@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Quattrocento+Sans);
.fade {
  animation-name: fadein;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.flexbox {
  display: -webkit-flex;
  display: flex;
}
/*drop*/
.sizuku {
  animation: sizuku .8s linear 0s; /*アニメーション.8*/
  background-color: #aaaaaa; /*背景*/
  border-radius: 50%;
  border: 2px solid #aaaaaa;
  position: absolute;
  z-index: 10000;
}
@keyframes sizuku {
  0% {
    height: 0;
    opacity: 1;
    transform: translate(0, 0);
    width: 0;
  }
  100% {
    height: 50px; /*円直径最大値*/
    opacity: 0;
    transform: translate(-25px, -25px); /*半径*/
    width: 50px; /*＝円直径最大値*/
  }
}
/*LOADING--*/
.is-hide {
  display: none;
}
#loader-bg {
  background: #000;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
}
.loading-video {
  position: relative;
  top: 25vh;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  object-fit: cover;
  text-align: center;
}
.loading-video video {
  width: 33.3%;
}
.loading-text {
  position: relative;
  top: 15vh;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  width: 100%;
  height: 100px;
  line-height: 100px;
}
.loading-text span {
  display: inline-block;
  margin: 0 5px;
  color: #fff;
  font-family: "Quattrocento Sans", sans-serif;
}
.loading-text span:nth-child(1) {
  filter: blur(0px);
  animation: blur-text 1.5s 0s infinite linear alternate;
}
.loading-text span:nth-child(2) {
  filter: blur(0px);
  animation: blur-text 1.5s 0.2s infinite linear alternate;
}
.loading-text span:nth-child(3) {
  filter: blur(0px);
  animation: blur-text 1.5s 0.4s infinite linear alternate;
}
.loading-text span:nth-child(4) {
  filter: blur(0px);
  animation: blur-text 1.5s 0.6s infinite linear alternate;
}
.loading-text span:nth-child(5) {
  filter: blur(0px);
  animation: blur-text 1.5s 0.8s infinite linear alternate;
}
.loading-text span:nth-child(6) {
  filter: blur(0px);
  animation: blur-text 1.5s 1s infinite linear alternate;
}
.loading-text span:nth-child(7) {
  filter: blur(0px);
  animation: blur-text 1.5s 1.2s infinite linear alternate;
}
.loading-text span:nth-child(8) {
  filter: blur(0px);
  animation: blur-text 1.5s 1.4s infinite linear alternate;
}
.loading-text span:nth-child(9) {
  filter: blur(0px);
  animation: blur-text 1.5s 1.6s infinite linear alternate;
}
.loading-text span:nth-child(10) {
  filter: blur(0px);
  animation: blur-text 1.5s 1.8s infinite linear alternate;
}
@keyframes blur-text {
  0% {
    filter: blur(0px);
  }
  100% {
    filter: blur(4px);
  }
}
/* --LOADING */
/*メインアイコン*/
#icon {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
#icon img {
  /*width: 60%;*/
}
/*ヘッダー*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: space-between;
  background-color: rgba(237, 237, 237, 0.9);
  z-index: 99;
}
.header a:hover {
  border-bottom: none;
}
.header_logo a {
  transition: 0.5s;
}
.header_logo a:hover {
  opacity: 0.8;
}
.header_logo {
  margin: 20px 0 20px 30px;
}
.header_logo img {
  width: 70%;
}
/*メニュー*/
.spmenu {
  display: none;
}
.menu_item {
  display: flex;
  justify-content: flex-end;
  margin: 20px 30px 20px 0;
}
button {
  color: #333;
  width: 10vw;
  height: 7vh;
  border: 0;
  outline: 0;
  font-size: 0.8vw;
  border-radius: 58px;
  padding: 1vw;
  background-color: #EDEDED;
  box-shadow: -5px -5px 20px #FFF, 5px 5px 20px #c9c9c9;
  transition: all 0.2s ease-in-out;
  &:hover {
    box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #c9c9c9;
  }
  &:active {
    box-shadow: inset 1px 1px 2px #c9c9c9, inset -1px -1px 2px #FFF;
  }
  .unit {
    border-radius: 8px;
    line-height: 0;
    width: 1vw*3;
    height: 1vw*3;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 1vw/2;
    font-size: 1vw*1.2;
  }
  .menu-btn {
    display: block;
    width: 100%;
  }
}
.menu a:nth-child(2) {
  margin-left: 1vw;
}
/*メニュー*/
/*about_メニューボタン*/
.profile_contact button {
  margin-left: 0;
}
/*about_メニューボタン*/
/*#pagetop*/
#pagetop {
  position: fixed;
  right: 108px;
  bottom: 60px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}
#pagetop img {
  width: 100%;
  transition: .5s all;
}
#pagetop:hover img {
  transform: translateY(-8px);
}
/*scroller*/
.scroller {
  display: inline-block;
  position: absolute;
  left: 49.1%;
  top: -80px;
  padding: 10px 10px 100px;
  overflow: hidden;
  color: #333333;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
}
.scroller::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 150px;
  background: rgba(51, 51, 51, .4);
}
.scroller::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 150px;
  background: #fff;
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
#contents .scroller {
  top: 0;
  bottom: 0;
}
/*scroller*/
/*fadeup*/
.fadeup {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
  &.fadeup-bottom {
    transform: translate(0, 30px);
  }
  &.scrollin {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}
/*fadeup*/
/*足跡マーク*/
.fp-bottom {
  position: absolute;
  right: 0;
  display: flex;
  width: 50%;
}
.animation-fp-petapeta {
  fill: #DBD6D0;
}
/*footer*/
footer {
  padding: 10vw 10vw 0 10vw;
  width: 100vw;
  height: 100%;
  background-color: #fff;
  font-size: 14px;
  z-index: 0;
  box-sizing: border-box;
}
.footer_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer .name {
  margin-bottom: 1vw;
}
footer .name p {
  text-align: left;
  font-family: 'Lato', sans-serif;
  letter-spacing: 2px;
}
footer .name .name1 {
  font-size: 130%;
  font-weight: 700;
  margin: 0 0 10px 0;
}
footer .name .name2 {
  font-size: 70%;
  font-weight: 300;
  line-height: 1.4;
  margin: 0 0 0 2px;
}
/*Contact--*/
footer .contact_box {
  margin: 0 0 5vw 0;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}
/*--Contact*/
footer .footer_left .box1 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
footer .footer_left div {
  margin-top: 20px;
}
footer .flexbox .footer_left a:hover {
  border-bottom: 1px solid #fff;
}
footer .footer_right {
  text-align: right;
}
footer .footer_right span {
  margin-right: 2px;
}
footer .footer_right p {
  margin-top: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
footer .footer_right a:first-child {
  margin-right: 10px;
}
/*footer*/
/*----------------------------
* ▼ここから下層ページ
*----------------------------*/
/*--SPstyle*/
@media screen and (max-width: 1366px) {
  .scroller {
    display: none;
  }
  .loading-video video {
    width: 50%;
  }
}
/*スマホ表示基準(max-width: 767px)*/
@media screen and (max-width: 1000px) {
  /*#pagetop*/
  #pagetop {
    right: 30px;
  }
  .scroller {
    left: 50.1%;
  }
  .menu {
    display: none;
  }
  /*メニュー開閉ボタン*/
  .spmenu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: rgba(238, 238, 238, 1);
    transition: width .5s;
    z-index: 999;
  }
  .is-active {
    z-index: 2;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .circle_logo {
    position: absolute;
    bottom: 25%;
    left: 12%;
  }
  .menu__item {
    display: none;
    width: 100%;
    height: 100%;
    padding: 1em;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
  }
  .menu__rightbox {
    margin: 16% 0 0 10%;
  }
  .menu__rightbox div {
    padding-top: 2em;
    text-align: left;
    box-sizing: border-box;
  }
  .menu__item-active {
    display: flex;
  }
  .menu-btn {
    display: block;
    position: fixed;
    right: 30px;
    top: 30px;
    width: 50px;
    height: 50px;
    border-radius: 5px;
  }
  .spmenu span {
    display: block;
    width: 60%;
    margin: auto;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    right: 0;
    top: calc((100% - 2px)/2);
    border-radius: 3px;
    transition: .2s;
  }
  .menu-btn p {
    display: block;
    font-size: 80%;
    font-family: 'Lato', sans-serif;
    text-align: center;
    width: 50%;
    margin: auto 0;
    height: 1px;
    position: absolute;
    left: 6px;
    right: 0;
    top: calc((120% - 4px)/2);
    transition: .2s;
  }
  .menu__lineTop {
    transform: translateY(-10px);
  }
  .menu__lineMiddle {}
  .menu__lineBottom {
    transform: translateY(10px);
  }
  .is-active .menu__lineTop {
    transform: rotate(45deg);
  }
  .is-active .menu__lineMiddle {
    opacity: 0;
  }
  .is-active .menu__lineBottom {
    transform: rotate(-45deg);
  }
  /*メニュー開閉ボタン*/
  .loading-video video {
    width: 100%;
  }
  footer .flex {
    height: 80%;
  }
  footer .footer_left {
    margin: auto 0 0 5%;
  }
  footer .name {
    margin-bottom: 10vh;
  }
  footer .footer_right {
    margin: auto 5% 0 auto;
  }
}
/*SPstyle--*/