@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@100..700&family=Poppins:wght@300;400;500;600;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  font-variant-ligatures: none;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 100%;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
img[src$=".svg"] {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  display: block;
}

/* FONT
***************************************************************/
.sans {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}
.bebas {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
}
.poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* LINK
***************************************************************/
a {
  transition: 0.3s ease;
  text-decoration: none;
  color: #000;
}
a:active,
a:focus {
  outline: none;
}
a img {
  transition: 0.3s ease;
}

/* NONE
***************************************************************/
.none {
  display: none;
}
.linkNone {
  pointer-events: none;
}
.nolink {
  pointer-events: none !important;
  opacity: 0.45 !important;
}
@media all and (min-width: 681px) {
  .nonePC {
    display: none !important;
  }
  .linkNonePC {
    pointer-events: none;
  }
}
@media all and (max-width: 680px) {
  .noneSP {
    display: none !important;
  }
  .linkNoneSP {
    pointer-events: none;
  }
}

/* clearfix
***************************************************************/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* Load Effect
***************************************************************/
@keyframes opacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  animation: opacity ease 1s forwards;
}

/* GoogleMap
***************************************************************/
.gm-style-pbt {
  text-align: center;
}
@media all and (max-width: 680px) {
  .gm-style-pbt {
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

#infscr-loading {
  text-align: center;
}
.comingSoon {
  text-align: center;
  padding-bottom: 50px;
}

/* lazyload
***************************************************************/

.lazyload {
  opacity: 0;
}
.lazyloaded {
  opacity: 1;
  transition: opacity ease 0.3s;
}

/* フェード
***************************************************************/

@keyframes action1_up {
  0% {
    opacity: 0;
    transform: translate(0, 100px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes action1_left {
  0% {
    opacity: 0;
    transform: translate(-100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes action1_right {
  0% {
    opacity: 0;
    transform: translate(100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes action1_up_sp {
  0% {
    opacity: 0;
    transform: translate(0, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes action1_left_sp {
  0% {
    opacity: 0;
    transform: translate(-50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes action1_right_sp {
  0% {
    opacity: 0;
    transform: translate(50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media all and (min-width: 681px) {
  .action.up {
    opacity: 0;
    transform: translate(0, 40px);
  }
  .action.left {
    opacity: 0;
    transform: translate(-40px, 0);
  }
  .action.right {
    opacity: 0;
    transform: translate(40px, 0);
  }
  .action.up.scrollin,
  .action.left.scrollin,
  .action.right.scrollin {
    opacity: 1;
    transform: translate(0, 0);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s,
      opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  }
  .action.delay1.scrollin {
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1s,
      opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  }
  .action.delay2.scrollin {
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s,
      opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
  }
  .action.delay3.scrollin {
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 2s,
      opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
  }
  .action.delay4.scrollin {
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s,
      opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s;
  }

  .action1 {
    opacity: 0;
    animation: opacity ease 1s forwards 0.25s;
  }
  .action1.delay1 {
    animation: opacity ease 1s forwards 0.75s;
  }
  .action1.delay2 {
    animation: opacity ease 1s forwards 1.25s;
  }

  .action1_up {
    opacity: 0;
    transform: translate(0, 100px);
    animation: action1_up ease 1s forwards 0.5s;
  }
  .action1_up.delay1 {
    animation: action1_up ease 1s forwards 0.75s;
  }
  .action1_up.delay2 {
    animation: action1_up ease 1s forwards 1s;
  }

  .action1_left {
    opacity: 0;
    transform: translate(-100px, 0);
    animation: action1_left ease 1s forwards 0.5s;
  }
  .action1_left.delay1 {
    animation: action1_left ease 1s forwards 0.75s;
  }
  .action1_left.delay2 {
    animation: action1_left ease 1s forwards 1s;
  }

  .action1_right {
    opacity: 0;
    transform: translate(100px, 0);
    animation: action1_right ease 1s forwards 0.5s;
  }
  .action1_right.delay1 {
    animation: action1_right ease 1s forwards 0.75s;
  }
  .action1_right.delay2 {
    animation: action1_right ease 1s forwards 1s;
  }
}

@media all and (max-width: 680px) {
  .action.up_sp {
    opacity: 0;
    transform: translate(0, 50px);
  }
  .action.left_sp {
    opacity: 0;
    transform: translate(-40px, 0);
  }
  .action.right_sp {
    opacity: 0;
    transform: translate(40px, 0);
  }
  .action.up_sp.scrollin,
  .action.left_sp.scrollin,
  .action.right_sp.scrollin {
    opacity: 1;
    transform: translate(0, 0);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s,
      opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  }
  .action.delay1_sp.scrollin {
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1s,
      opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  }
  .action.delay2_sp.scrollin {
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s,
      opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
  }
  .action.delay3_sp.scrollin {
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 2s,
      opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
  }
  .action.delay4_sp.scrollin {
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s,
      opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s;
  }

  .action1_up_sp {
    opacity: 0;
    transform: translate(0, 50px);
    animation: action1_up_sp ease 1s forwards 0.5s;
  }
  .action1_up_sp.delay1 {
    animation: action1_up_sp ease 1s forwards 0.75s;
  }
  .action1_up_sp.delay2 {
    animation: action1_up_sp ease 1s forwards 1s;
  }

  .action1_left_sp {
    opacity: 0;
    transform: translate(-50px, 0);
    animation: action1_left_sp ease 1s forwards 0.5s;
  }
  .action1_left_sp.delay1 {
    animation: action1_left_sp ease 1s forwards 0.75s;
  }
  .action1_left_sp.delay2 {
    animation: action1_left_sp ease 1s forwards 1s;
  }

  .action1_right_sp {
    opacity: 0;
    transform: translate(50px, 0);
    animation: action1_right_sp ease 1s forwards 0.5s;
  }
  .action1_right_sp.delay1 {
    animation: action1_right_sp ease 1s forwards 0.75s;
  }
  .action1_right_sp.delay2 {
    animation: action1_right_sp ease 1s forwards 1s;
  }
}

@keyframes blur {
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0);
    filter: blur(0);
  }
}
.blur {
  opacity: 0;
}
.scrollin.blur {
  animation: blur 1.5s ease-in-out 0.5s forwards;
}
.scrollin.blur.delay1 {
  animation-delay: 1s;
}
.scrollin.blur.delay2 {
  animation-delay: 1.5s;
}
.scrollin.blur.delay3 {
  animation-delay: 1.5s;
}

@keyframes passing-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}

@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.action1 {
  position: relative;
}
.action1::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #393939;
  z-index: 1;
}
.action1.scrollin::before {
  animation: passing-bar 0.6s ease 0.4s 1 normal forwards;
}
.action1 .action_item {
  display: block;
  opacity: 0;
  transform: translate3d(0, 0, 0);
}
.action1.scrollin .action_item {
  animation: passing-txt 0.6s ease 0.3s 1 normal forwards;
}

/* コンテンツ
***************************************************************/
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}

/* コンテンツ
***************************************************************/
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}

/* コンテンツ
***************************************************************/
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}
