@charset "UTF-8";
:root {
  --text-color: #222222;
  --background-color: #FFF7F7;
  --shadow-color: #13131379;
  --accent-color: #FADADD;
}

body {
  font-family: "Noto Sans", sans-serif;
  background-color: var(--background-color);
}

html {
  font-size: 100%;
}
@media (max-width: 500px) {
  html {
    font-size: 87.5%;
  }
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h1 {
  width: 60px;
}
@media (max-width: 768px) {
  h1 {
    width: 40px;
  }
}
@media (max-width: 500px) {
  h1 {
    width: 30px;
  }
}

h2 {
  font-size: 3rem;
  font-weight: normal;
}

h3 {
  font-size: 3rem;
  font-weight: normal;
  text-align: center;
  line-height: 30px;
  letter-spacing: 10px;
}
h3 span {
  font-size: 1.5rem;
  letter-spacing: initial;
}

.eachTextAnime span {
  opacity: 0;
  display: inline-block;
  font-size: inherit;
  color: inherit;
}
.eachTextAnime.appeartext span {
  -webkit-animation: text_anime_on 1s ease-out forwards;
          animation: text_anime_on 1s ease-out forwards;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
h4 {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 20px;
}
h4 span {
  font-size: 1rem;
}

h5 {
  font-size: 2rem;
  font-weight: normal;
  line-height: 30px;
  margin-bottom: 40px;
}
h5 span {
  font-size: 1.5rem;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

.wrapper {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 3%;
}

.sub {
  position: relative;
}
.sub::before {
  position: absolute;
  top: 50%;
  left: -15px;
  content: "";
  width: 10px;
  height: 2px;
  background-color: var(--text-color);
}
.sub::after {
  position: absolute;
  top: 50%;
  right: -15px;
  content: "";
  width: 10px;
  height: 2px;
  background-color: var(--text-color);
}

.title-sub {
  display: inline-block;
  margin-top: 10px;
}

.section-title {
  text-align: center;
  padding-block: 150px 50px;
}

.navigation {
  display: flex;
  gap: 30px;
}
.navigation li {
  position: relative;
}
.navigation li::before {
  position: absolute;
  bottom: 0;
  left: -100%;
  content: "";
  width: 0;
  height: 1px;
  background: var(--text-color);
  transition: all 0.5s;
}
.navigation li:hover::before {
  left: 0;
  width: 100%;
}

.btn {
  text-align: center;
  margin-top: 100px;
}
.btn img {
  width: 203px;
}
@media (max-width: 500px) {
  .btn img {
    width: 140px;
  }
}
.btn a {
  position: relative;
  display: inline-block;
  height: auto;
}
.btn a:hover .outline {
  top: 0;
  left: 0;
}
.btn a:hover p {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 500px) {
  .btn a:active .outline {
    top: 0;
    left: 0;
  }
  .btn a:active p {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.btn .outline {
  position: absolute;
  top: -16px;
  left: -20px;
  transition: all 0.5s;
}
.btn p {
  position: absolute;
  top: 10px;
  left: 80px;
  transition: all 0.5s;
}
@media (max-width: 500px) {
  .btn p {
    top: 7px;
    left: 45px;
  }
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #494848;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: all 0.5s;
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#particle {
  width: 100%;
  height: 100vh;
  vertical-align: bottom;
}

.lower h2 {
  line-height: 30px;
}
.lower-btn {
  margin-top: 100px;
  text-align: center;
}
.lower-btn a {
  position: relative;
  font-size: 1.25rem;
  display: inline-block;
  width: 150px;
}
.lower-btn a::before {
  position: absolute;
  content: "";
  bottom: 12px;
  left: -3px;
  transform: rotate(-35deg);
  width: 41px;
  height: 1px;
  background-color: var(--text-color);
  transition: all 0.5s;
}
.lower-btn a::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 150px;
  height: 1px;
  background-color: var(--text-color);
  transition: all 0.5s;
}
.lower-btn a:hover::before {
  left: -18px;
}
.lower-btn a:hover::after {
  left: -15px;
}

.page-transition {
  position: fixed;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background-color: var(--accent-color);
  border-radius: 50%;
  transform: scale(0);
  z-index: 9999;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.page-transition.active {
  transform: scale(25);
}

header {
  width: 100vw;
  height: 90px;
  position: fixed;
  z-index: 10;
  background-color: rgba(255, 247, 247, 0.737254902);
}
@media (max-width: 768px) {
  header {
    height: 70px;
  }
}
@media (max-width: 500px) {
  header {
    height: 60px;
  }
}
header .outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-inline: 3%;
  padding-top: 20px;
}
@media (max-width: 768px) {
  header .outer {
    padding-top: 10px;
  }
}
@media (max-width: 500px) {
  header .navigation {
    visibility: hidden;
    display: block;
    position: fixed;
    top: 60px;
    right: 125px;
    z-index: 999;
    transition: all 0.5s;
    opacity: 0;
  }
}
@media (max-width: 500px) {
  header .navigation li {
    margin-bottom: 30px;
  }
}

.toggle {
  position: relative;
  width: 25px;
  height: 20px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
  display: none;
}
@media (max-width: 500px) {
  .toggle {
    display: block;
  }
}
.toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 4px;
  display: inline-block;
  transition: all 0.5s;
}
.toggle span:nth-of-type(1) {
  top: 0;
}
.toggle span:nth-of-type(2) {
  top: 50%;
}
.toggle span:nth-of-type(3) {
  bottom: 0;
}
.toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  margin: -16px 0 0 -16px;
  border-radius: 50%;
  border: 1px solid rgba(218, 218, 218, 0.622);
  transition: all 1s;
  opacity: 0;
  transform: scale(0.1);
}
.toggle.ripple::after {
  -webkit-animation: circle 1s forwards;
          animation: circle 1s forwards;
}
@-webkit-keyframes circle {
  0% {
    transform: scale(0.1);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    transform: scale(0.1);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

.circle-bg {
  position: fixed;
  z-index: 3;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: scale(0);
  right: -50px;
  top: -50px;
  transition: all 0.6s;
}

.open .toggle {
  z-index: 999;
}
.open .toggle span:nth-of-type(1) {
  top: 50%;
  transform: rotate(-45deg);
}
.open .toggle span:nth-of-type(2) {
  opacity: 0;
}
.open .toggle span:nth-of-type(3) {
  top: 50%;
  transform: rotate(45deg);
}
.open::after {
  -webkit-animation: circle 0.5s;
          animation: circle 0.5s;
}
@keyframes circle {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}
.open .navigation {
  visibility: visible;
  opacity: 1;
}
.open .circle-bg {
  transform: scale(7);
}

footer {
  background-color: var(--background-color);
  text-align: center;
  padding-top: 250px;
}
footer .navigation {
  justify-content: center;
}

.logo {
  width: 60px;
  margin-inline: auto;
  margin-top: 60px;
}

/*スクロールリンクの形状*/
.scroll-top {
  /*表示位置*/
  position: fixed;
  right: 30px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s; /*それぞれに0.5秒の変化のアニメーション*/
  /*縦書き*/
  writing-mode: vertical-rl;
  /*改行禁止*/
  white-space: nowrap;
  /*矢印の動き*/
  -webkit-animation: arrowmove 1s ease-in-out infinite;
          animation: arrowmove 1s ease-in-out infinite;
}

@-webkit-keyframes arrowmove {
  0% {
    bottom: 20px;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: 20px;
  }
}

@keyframes arrowmove {
  0% {
    bottom: 20px;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: 20px;
  }
}
/*.scroll-viewクラスがついたら出現*/
.scroll-top.scroll-view {
  opacity: 1;
  visibility: visible;
}

/*リンク全体の aタグの形状*/
.scroll-top a {
  text-decoration: none;
  color: #666;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
}

/*スクロールリンクの形状*/
.js-scroll a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: #666;
}

.js-scroll a::before {
  content: "";
  position: absolute;
  top: 30px;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #666;
  transform: skewX(-31deg);
}

/*Edge IE11 hack*/
_:-ms-lang(x), .js-scroll a::before {
  right: -11px;
}

/*ページトップリンクの形状*/
.js-pagetop a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: #666;
}

.js-pagetop a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #666;
  transform: skewX(31deg);
}

/*Edge IE11 hack*/
_:-ms-lang(x), .js-pagetop a::before {
  right: 0;
}

.mainvisual {
  max-width: 362px;
  position: fixed;
  top: 50%;
  left: 55%;
  transform: translateY(-50%);
  z-index: -10;
}
@media (max-width: 768px) {
  .mainvisual {
    max-width: 100vw;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(0);
  }
}
.mainvisual img {
  border-radius: 100px;
  height: 100%;
}
@media (max-width: 768px) {
  .mainvisual img {
    border-radius: 0;
    -o-object-position: top;
       object-position: top;
  }
}

@media (max-width: 768px) {
  #top {
    color: var(--background-color);
  }
}
@media (max-width: 768px) {
  #top .sub::before, #top .sub::after {
    background-color: var(--background-color);
  }
}

.heading {
  height: 100vh;
  text-align: center;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .heading {
    width: 100%;
    align-items: flex-start;
    padding-left: 100px;
  }
}
@media (max-width: 500px) {
  .heading {
    align-items: center;
    padding-left: 0;
  }
}
.heading .sub {
  font-size: 2rem;
}

.title-name {
  line-height: 50px;
}
.title-name .en {
  position: relative;
}
.title-name .en::before {
  position: absolute;
  top: -40px;
  left: -50px;
  content: "portfolio";
  font-family: "Alex Brush", cursive;
  transform: rotate(-20deg);
}

.copy {
  height: 100vh;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 50px;
}
@media (max-width: 768px) {
  .copy {
    width: 100%;
    justify-content: flex-start;
    padding-left: 100px;
  }
}
@media (max-width: 500px) {
  .copy {
    padding-left: 0;
    text-align: center;
    justify-content: center;
  }
}

#profile {
  background-color: var(--background-color);
  padding-bottom: 200px;
}
#profile .inner {
  display: flex;
}
@media (max-width: 768px) {
  #profile .inner {
    flex-direction: column;
    align-items: center;
  }
}
#profile .inner .text {
  padding-left: 50px;
}
@media (max-width: 768px) {
  #profile .inner .text {
    margin-top: 50px;
    padding-left: 0;
  }
}

.portrait {
  max-width: 400px;
}
.portrait img {
  border-radius: 100px;
}

.myname {
  letter-spacing: 10px;
  margin-bottom: 20px;
}
.myname span {
  letter-spacing: initial;
  font-size: 1.5rem;
}

.introduction {
  line-height: 30px;
}

.items {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
  padding-inline: 20px;
}
@media (max-width: 500px) {
  .items {
    flex-direction: column;
    width: 90%;
    margin-inline: auto;
  }
}

.item {
  width: 33.3333333333%;
  text-align: center;
  z-index: 1;
}
@media (max-width: 500px) {
  .item {
    width: 100%;
  }
}
.item .area {
  position: relative;
  transition: all 0.5s ease;
}
.item .area .title {
  padding-bottom: 20px;
}
.item .area .title::before, .item .area .title::after {
  position: absolute;
  content: "";
  background-color: var(--accent-color);
  z-index: 1;
  transition: all 0.5s;
}
.item .area .title::before {
  width: 15px;
  height: 2px;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
}
.item .area .title::after {
  width: 15px;
  height: 2px;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}
.item .area .title.close {
  padding-bottom: 0;
}
.item .area .title.close::before {
  transform: translateX(-50%) rotate(45deg);
}
.item .area .title.close::after {
  transform: translateX(-50%) rotate(-45deg);
}
.item .area .circle {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--text-color);
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
}
.item .text {
  position: relative;
  background-color: var(--accent-color);
  border-radius: 50%;
  padding-block: 25px 20px;
  margin-top: 20px;
  box-shadow: 4px 4px 4px var(--shadow-color);
}
@media (max-width: 500px) {
  .item .text {
    border-radius: 40px;
  }
}
.item .text::before {
  position: absolute;
  content: "";
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent var(--accent-color) transparent;
  border-width: 0px 10px 30px 10px;
}
.item .text:nth-of-type(2) {
  margin-inline: 10px;
}
.item .text .title {
  cursor: pointer;
}

.cat {
  width: 90px;
  margin-inline: auto;
}

.accordion {
  display: none;
  padding-top: 20px;
}
.accordion li {
  padding-bottom: 16px;
}
.accordion dd {
  padding-bottom: 16px;
}
.accordion-btn {
  background-color: #2C3E50;
  width: 20px;
  height: 20px;
  margin-inline: auto;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.accordion-btn::before {
  position: absolute;
  content: "+";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--background-color);
}

.click {
  position: absolute;
  width: 107px;
  right: 11px;
  top: 74px;
  -webkit-animation: click 15s linear infinite;
          animation: click 15s linear infinite;
}
@-webkit-keyframes click {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes click {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

#service {
  background-color: var(--background-color);
  padding-block: 20px;
}
#service .outer {
  background-color: #F5F5F5;
  border-radius: 10% 25%;
  padding-bottom: 200px;
  box-shadow: 4px 4px 4px var(--shadow-color);
}
#service ol {
  display: flex;
}
@media (max-width: 768px) {
  #service ol {
    flex-direction: column;
    margin-inline: 20px;
  }
}
#service ol li {
  width: 33.3333333333%;
  list-style: decimal;
}
@media (max-width: 768px) {
  #service ol li {
    width: 100%;
  }
}
#service ol li:nth-of-type(2) {
  margin-inline: 50px;
}
@media (max-width: 768px) {
  #service ol li:nth-of-type(2) {
    margin-inline: 0;
    margin-block: 50px;
  }
}
#service ol li h4 {
  background-image: url(../img/service.png);
  background-position: 0px center;
  padding-block: 50px;
  height: 155px;
}
@media (max-width: 768px) {
  #service ol li h4 {
    padding-block: 80px;
  }
}
#service ol li p {
  line-height: 40px;
}

#works {
  background-color: var(--background-color);
  padding-bottom: 200px;
}

.works-item {
  display: flex;
  gap: 40px;
}
@media (max-width: 500px) {
  .works-item {
    gap: 30px;
  }
}
@media (max-width: 500px) {
  .works-item {
    display: block;
  }
}
.works-item li {
  width: 33.3333333333%;
}
@media (max-width: 500px) {
  .works-item li {
    width: 50%;
    margin-inline: auto;
  }
}
@media (max-width: 500px) {
  .works-item li:not(:first-of-type) {
    margin-inline: 10px;
  }
}
.works-item li img {
  border: 1px solid var(--text-color);
  box-shadow: 4px 4px 4px var(--shadow-color);
}

.lower .works .category {
  display: flex;
}
@media (max-width: 500px) {
  .lower .works .category {
    gap: 15px;
  }
}
.lower .works-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 500px) {
  .lower .works-item {
    grid-template-columns: 1fr 1fr;
  }
}
.lower .works-item li {
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .lower .works-item li:not(:first-of-type) {
    margin-inline: initial;
  }
}

.category {
  gap: 30px;
  margin-bottom: 100px;
  justify-content: center;
}
.category li {
  position: relative;
}
.category li::before {
  position: absolute;
  bottom: 0;
  left: -100%;
  content: "";
  width: 0;
  height: 1px;
  background: var(--text-color);
  transition: all 0.5s;
}
.category li:hover::before {
  left: 0;
  width: 100%;
}

.annotation {
  margin-top: 100px;
  text-align: right;
}

.single h3 {
  font-size: 1.75rem;
  text-align: initial;
  letter-spacing: initial;
}
.single .wrapper .inner {
  display: flex;
  justify-content: space-between;
}
.single .left {
  width: 48%;
}
.single .left img {
  border: 1px solid var(--text-color);
  box-shadow: 4px 4px 4px var(--shadow-color);
}
.single .right {
  width: 48%;
}
.single .right .text {
  line-height: 30px;
}

.lead,
.link {
  font-size: 0.875rem;
}

.link {
  margin-bottom: 20px;
}

#contact {
  background-color: var(--background-color);
  padding-bottom: 20px;
}
#contact .outer {
  background-color: #F5F5F5;
  border-radius: 50% 20%/10% 40%;
  padding-bottom: 100px;
  text-align: center;
  box-shadow: 4px 4px 4px var(--shadow-color);
}
#contact .btn img {
  width: 220px;
}
@media (max-width: 500px) {
  #contact .btn img {
    width: 175px;
  }
}
#contact .btn a:hover p {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 500px) {
  #contact .btn a:active p {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
#contact .btn p {
  font-size: 1rem;
  width: 100%;
  top: 17px;
  left: 0;
}
@media (max-width: 500px) {
  #contact .btn p {
    left: -7px;
  }
}

@media (max-width: 500px) {
  .contact-text .br {
    display: block;
  }
}
.contact-text .text {
  font-size: 1.25rem;
}
.contact-text .text:first-of-type {
  padding-bottom: 20px;
  font-size: 1.5rem;
}
.contact-text .text:last-of-type {
  line-height: 40px;
}

.lower .contact {
  padding-bottom: 10px;
}
.lower .contact .wrapper p {
  font-size: 1.25rem;
}
.lower .contact .wrapper .sub::before {
  height: 1px;
}
.lower .contact .wrapper .sub::after {
  height: 1px;
}
.lower .contact-text {
  margin-bottom: 30px;
}
.lower .contact form {
  text-align: center;
}
.lower .contact-table {
  text-align: left;
  margin-inline: auto;
  padding: 50px 20% 0;
  width: 100%;
}
@media (max-width: 500px) {
  .lower .contact-table {
    padding: 50px 5% 0;
  }
}
.lower .contact-table tr {
  height: 100px;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .lower .contact-table tr {
    display: flex;
    flex-direction: column;
    height: initial;
  }
}
.lower .contact-table th,
.lower .contact-table td {
  font-weight: normal;
  vertical-align: top;
}
.lower .contact-table th {
  font-size: 1.25rem;
  line-height: 20px;
  width: 40%;
}
@media (max-width: 500px) {
  .lower .contact-table th {
    width: 100%;
    display: flex;
    align-items: flex-end;
  }
}
.lower .contact-table th .sub {
  margin-left: 20px;
}
.lower .contact-table td {
  width: 60%;
}
@media (max-width: 500px) {
  .lower .contact-table td {
    width: 100%;
  }
}
.lower .contact-table textarea {
  height: 200px;
}

.title-jp {
  font-size: 0.875rem;
}

.asterisk {
  color: #FF0018;
}
@media (max-width: 500px) {
  .asterisk {
    display: none;
  }
}
.asterisk-sp {
  color: #FF0018;
  display: none;
}
@media (max-width: 500px) {
  .asterisk-sp {
    display: block;
    padding-left: 20px;
  }
}

form {
  background-color: #FFFFFF;
  box-shadow: 10px 10px 4px var(--shadow-color);
}

.name,
.email,
.message {
  border: 1px solid var(--text-color);
  border-radius: 5px;
  padding: 10px;
  width: 100%;
}

.required {
  text-align: left;
  margin: 0 auto 30px;
  padding: 50px 20% 0;
  width: 100%;
}
@media (max-width: 500px) {
  .required {
    padding: 50px 5% 0;
  }
}
.required .asterisk {
  display: inline-block;
}

.submit input {
  width: 100%;
}
.submit-btn {
  display: inline-block;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  padding: 10px 50px;
  margin-bottom: 30px;
  line-height: 18px;
  letter-spacing: 5px;
  position: relative;
  transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 0 1px var(--text-color);
}
.submit-btn a {
  width: 100%;
}
.submit-btn i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  display: inline-block;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  font-size: 1.2em;
}
.submit-btn:hover {
  box-shadow: 0 0 0 3px var(--text-color);
}
.submit-btn:hover i {
  transform: translate(120px, -60px) rotate(0) scale(1.2);
  opacity: 0;
}
/*# sourceMappingURL=style.css.map */