body {
  font-family: "Noto Sans", sans-serif;
  color: #fff;
  letter-spacing: 0.03em;
  background-color: #fff;
  z-index: 100;
}

a.btn {
  background-color: #28292b;
  width: 183px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  margin: auto;
  border-radius: 100vw;
  background-size: 400%;
  color: #fff;
  border: 1px solid rgb(255, 255, 255);
  margin: 64px auto 0;
}
a.btn:hover::before {
  transform: scaleX(1);
}
a.btn:hover {
  color: #fff;
}
a.btn span {
  position: relative;
  z-index: 1;
}
a.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  width: 100%;
  height: inherit;
  border-radius: inherit;
  background: linear-gradient(
    #29eb8b 0%,
    #24e48c 17%,
    #19d28e 40%,
    #06b493 68%,
    #00ab95 75%,
    #00ab95 100%
  );
  transition: all 0.475s;
}
@media (max-width: 980px) {
  a.btn {
    width: 183px;
    height: 46px;
    margin: 56px auto 0;
  }
}

/* ヘッダー */
header {
  z-index: 10000;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 0 0 0 80px;
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
}
header img {
  width: 160px;
  height: auto;
}
header a {
  text-decoration: none;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.09em;
  color: #28292b;
}
header span {
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.09em;
  color: #28292b;
}
header nav {
  margin: 0 0 0 auto;
}
header ul {
  list-style: none;
  margin: 0;
  display: flex;
}
header li {
  margin: 0 0 0 24px;
  font-size: 14px;
}
header .main-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url("main_visual.jpg") top center/cover no-repeat;
}
header .menu-item--contact {
  background-color: #19d28e;
  color: #fff;
  padding: 20px 38px;
  height: 80px;
  margin-left: 20px;
}
header .menu-item--contact  a,header .menu-item--contact  span{
  color: #fff;
}

.sp-nav {
  display: none;
}

@media (max-width: 1210px) {
  header {
    padding: 0 20px;
    height: 60px;
  }
  header img {
    width: 112px;
    height: auto;
  }
  .hamburger_img{
    margin-bottom: 30px;
  }
  .pc-nav {
    display: none;
    padding: 0 20px;
  }
  .sp-nav {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.2s ease-in-out;
  }
  #hamburger {
    position: relative;
    display: block;
    width: 30px;
    height: 25px;
    margin: 0 0 0 auto;
  }
  #hamburger span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #28292b;
    transform: translateY(-50%);
  }
  #hamburger::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #28292b;
  }
  #hamburger::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 2px;
    background-color: #28292b;
  }
  header .menu-item--contact{
    display: none;
    background-color:#19d28e ;
  }
  header .menu-item--contact2{
    color:#19d28e ;
    text-align: center;
  }
  header .menu-item--contact2 span{
    color:#19d28e ;
  }
  /*スマホメニュー*/
  .sp-nav ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .sp-nav li {
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: center;
  }
  .sp-nav ul li a {
    margin: 0;
    padding: 0;
    color: #fff;
  }
}
.sp-nav li span {
  font-size: 15px;
  color: #fff;
}

.sp-nav li a,
.sp-nav li span {
  display: block;
  padding: 10px 0 30px;
  color: #fff;
}

/*-閉じるアイコンー*/
.sp-nav .close {
  position: relative;
  padding: 30px 0 12px 20px;
}

.sp-nav .close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 16px;
  height: 1px;
  transform: rotate(45deg);
  background-color: #fff;
}

.sp-nav .close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 16px;
  height: 1px;
  transform: rotate(-45deg);
  background-color: #fff;
}

.toggle {
  transform: translateY(0);
  opacity: 1;
}

/* フッター */
footer {
  background-color: #28292b;
  padding: 64px 80px 32px;
  color: #fff;
}
footer .menu {
  display: flex;
  margin-bottom: 45px;
}
footer .menu img {
  width: 160px;
  height: auto;
}
footer .menu .pc-nav_1 {
  margin: auto 0 auto auto;
}
footer .menu .pc-nav_1 ul {
  list-style: none;
  margin: 0;
  display: flex;
}
footer .menu .pc-nav_1 li {
  margin: 0 0 0 40px;
  font-size: 14px;
}
footer .menu .pc-nav_1 a {
  text-decoration: none;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.09em;
  color: #fff;
}
footer .menu .pc-nav_1 span {
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.09em;
  color: #fff;
}
footer .text_right {
  text-align: right;
}
footer .text_right li {
  list-style: none;
  margin-bottom: 8px;
  font-size: 12px;
}
footer .text_right p {
  margin-top: 45px;
  font-size: 12px;
}
footer small {
  display: block;
  margin-top: 38px;
  text-align: center;
  font-size: 12px;
}

@media (max-width: 1120px) {
  footer {
    padding: 32px 20px 24px;
  }
  footer .menu {
    display: block;
    margin-bottom: 36px;
  }
  footer .menu img {
    width: 112px;
    height: auto;
    margin-bottom: 40px;
  }
  footer .menu .pc-nav_1 {
    margin: auto 0 auto auto;
  }
  footer .menu .pc-nav_1 ul {
    list-style: none;
    margin: 0;
    display: block;
    text-align: center;
  }
  footer .menu .pc-nav_1 li {
    margin: 0 0 24px 0;
    font-size: 14px;
  }
  footer .menu .pc-nav_1 a {
    text-decoration: none;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.09em;
    color: #fff;
  }
  footer .menu .pc-nav_1 span {
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 0.09em;
    color: #fff;
  }
  footer .text_right {
    text-align: right;
  }
  footer .text_right li {
    list-style: none;
    margin-bottom: 8px;
    font-size: 12px;
  }
  footer .text_right p {
    margin-top: 24px;
    font-size: 12px;
    text-align: center;
  }
  footer small {
    display: block;
    margin-top: 16px;
    text-align: center;
    font-size: 12px;
  }
}
@keyframes startFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anm {
  opacity: 0;
}
.anm.is-animated {
  animation: fadeIn 1.5s forwards;
}

.anm-up {
  opacity: 0;
  transform: translateY(30px);
}
.anm-up.is-animated {
  animation: fadeInUp 1.5s forwards;
}

.anm-left {
  opacity: 0;
  transform: translateX(30px);
}
.anm-left.is-animated {
  animation: fadeInLeft 1.5s forwards;
}

.anm-right {
  opacity: 0;
  transform: translateX(-30px);
}
.anm-right.is-animated {
  animation: fadeInRight 1.5s forwards;
}

.anm-list > * {
  opacity: 0;
  transform: translateY(30px);
}

.anm-list > *.is-animated {
  animation: fadeInUp 1.5s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
} /*# sourceMappingURL=style.css.map */



 /* top　アニメーション */
:root {
  --delay: 0;
  --duration: 900ms;
  --iterations: 1;
}
/* •·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•· */

.reveal-text,
.reveal-text::after {
  animation-delay: var(--animation-delay, 2s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 1000ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.reveal-text {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  font-size: 10vw;
  animation-name: clip-text;
  color: #fff;
  white-space: nowrap;
  cursor: default;

  &::after {
    content: "";
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: 0 50%;
    pointer-events: none;
    animation-name: text-revealer;
  }
}

@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes text-revealer {
  0%,
  50% {
    transform-origin: 0 50%;
  }

  60%,
  100% {
    transform-origin: 100% 50%;
  }

  60% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}