html {
  scroll-behavior: smooth;
  scroll-padding-top: 170px; 
}
@media(max-width: 767px){
  html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px; 
}
}
#projects-list {
    position: relative;
    transition: opacity 0.3s ease;
}

#projects-list.projects--loading {
    pointer-events: none;
}

#projects-list.projects--loading::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border: 4px solid rgba(0, 0, 0);
    border-top-color: #fff;
    border-radius: 50%;
    animation: projects-spin 0.7s linear infinite;
    z-index: 10;
}

@keyframes projects-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}


.filter__item--active{
    color: #fcab01;
    border-color: #fcab01;
}

.mypage .main > *:first-child{
    padding-top: 100px;
}
.mypage .main > *:last-child {
    padding-bottom: 72px;
}
@media(max-width: 767px){
    .mypage .main > *:first-child{
    padding-top: 28px;
    }
    .mypage .main > *:last-child {
    padding-bottom: 60px;
}
}
.wpcf7-response-output{
   border-radius: 8px;
   font-size: 15px;
}
.wpcf7-spinner{
    display: none !important;
}
.input{
    position: relative;
}
.input .wpcf7-not-valid-tip{
    color: red;
    font-size: 13px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    text-transform:none;
}
/* .anchor{
	padding-top: 170px;
	margin-top: -170px;
}
@media(max-width: 767px){
  .anchor{
	padding-top: 50px;
	margin-top: -50px;
   }
} */