@charset "UTF-8";
/* 上書き */
h1 {
  padding: 0;
  min-width: auto;
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

section#top {
  margin-top: 0;
}

nav.headerNav li,
nav.headerNav li a {
  font-family: -apple-system, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

/* ここまで */
nav.headerNav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 48px;
  background-color: #fff;
  padding: 10px 14px 0;
  z-index: 400;
  box-shadow: 2px 8px 8px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 960px) {
  nav.headerNav {
    height: 72px;
    padding: 16px 30px;
  }
}
nav.headerNav .wrap-nav {
  display: flex;
  justify-content: space-between;
  margin-right: 50px;
}
@media screen and (min-width: 960px) {
  nav.headerNav .wrap-nav {
    margin-right: 60px;
  }
}
nav.headerNav .wrap-nav .logo {
  width: 35px;
  height: 30px;
}
@media screen and (min-width: 768px) {
  nav.headerNav .wrap-nav .logo {
    width: 157px;
  }
}
@media screen and (min-width: 768px) and (min-width: 960px) {
  nav.headerNav .wrap-nav .logo {
    width: 209px;
    height: 40px;
  }
}
nav.headerNav .wrap-nav .logo a {
  display: block;
  height: 0;
  padding-top: 30px;
  overflow: hidden;
  background-image: url(/img/logo-img/ownersbook_icon.svg);
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  nav.headerNav .wrap-nav .logo a {
    background-image: url(/img/ownersbook_logo.svg);
  }
}
@media screen and (min-width: 960px) {
  nav.headerNav .wrap-nav .logo a {
    padding-top: 40px;
  }
}
nav.headerNav .wrap-nav ul.nav-right {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 960px) {
  nav.headerNav .wrap-nav ul.nav-right {
    padding-top: 3px;
  }
}
nav.headerNav .wrap-nav ul.nav-right li.menu-list-pc {
  display: none;
}
@media screen and (min-width: 960px) {
  nav.headerNav .wrap-nav ul.nav-right li.menu-list-pc {
    display: block;
    font-size: 16px;
  }
}
nav.headerNav .wrap-nav ul.nav-right li.linkto-info {
  position: relative;
  list-style: none;
}
nav.headerNav .wrap-nav ul.nav-right li.linkto-info a {
  color: #555;
  display: block;
}
nav.headerNav .wrap-nav ul.nav-right li.linkto-info a .fa-info-circle::before,
nav.headerNav .wrap-nav ul.nav-right li.linkto-info a .fa-handshake::before,
nav.headerNav .wrap-nav ul.nav-right li.linkto-info a .fa-comment-alt::before {
  color: #aaa;
}
nav.headerNav .wrap-nav ul.nav-right li.linkto-info a img {
  width: 32px;
  height: auto;
  vertical-align: middle;
}
@keyframes notification {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
nav.headerNav .wrap-nav ul.nav-right li.linkto-info a .ico-newarrival {
  background-color: #FF4D6B;
  position: absolute;
  top: -4px;
  left: 26px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  animation-name: notification;
  animation-duration: 0.8s;
  animation-timing-function: ease-in;
  animation-delay: 1s;
  animation-iteration-count: 3;
}
nav.headerNav .wrap-nav ul.nav-right li.linkto-info a:hover {
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  nav.headerNav .wrap-nav ul.nav-right li {
    position: relative;
    margin-right: 16px;
    list-style: none;
  }
  nav.headerNav .wrap-nav ul.nav-right li:last-of-type {
    margin-right: 0;
  }
  nav.headerNav .wrap-nav ul.nav-right li a {
    color: #555;
    font-size: 16px;
    text-align: center;
    position: relative;
  }
  nav.headerNav .wrap-nav ul.nav-right li a::before {
    content: "";
    position: absolute;
    width: 0;
    background: #00B4CB;
    left: 45%;
    height: 2px;
    bottom: -6px;
    transition: all 0.3s;
    opacity: 0.7;
  }
  nav.headerNav .wrap-nav ul.nav-right li a:hover {
    text-decoration: none;
  }
  nav.headerNav .wrap-nav ul.nav-right li a:hover::before {
    width: 100%;
    left: 0;
  }
}
nav.headerNav .wrap-nav ul.nav-right li.open-dropdown-nav-right {
  display: none;
}
@media screen and (min-width: 960px) {
  nav.headerNav .wrap-nav ul.nav-right li.open-dropdown-nav-right {
    display: block;
    font-size: 16px;
  }
  nav.headerNav .wrap-nav ul.nav-right li.open-dropdown-nav-right:hover ul.dropdown-nav-right {
    transform: scaleY(1);
  }
  nav.headerNav .wrap-nav ul.nav-right li.open-dropdown-nav-right ul.dropdown-nav-right {
    transform: scaleY(0);
    transform-origin: center top;
    transition: all 0.3s;
    position: absolute;
    left: -16px;
    width: 12em;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding: 20px 16px 10px 26px;
    filter: drop-shadow(0px 4px 2px #ddd);
    z-index: 100;
  }
  nav.headerNav .wrap-nav ul.nav-right li.open-dropdown-nav-right ul.dropdown-nav-right li {
    transition: all 0.3s;
  }
  nav.headerNav .wrap-nav ul.nav-right li.open-dropdown-nav-right ul.dropdown-nav-right li a {
    display: inline-block;
    height: 40px;
    text-align: left;
  }
  nav.headerNav .wrap-nav ul.nav-right li.open-dropdown-nav-right ul.dropdown-nav-right li a::before {
    bottom: 14px;
  }
}
nav.headerNav .wrap-nav ul.nav-right li.open-dropdown-nav-right i.fa-chevron-down {
  font-size: 12px;
  color: #777;
  margin-left: 2px;
  vertical-align: 10%;
}

.box-menu {
  position: fixed;
  top: 48px;
  background: #fff;
  z-index: 300;
  transition: 0.2s ease-in-out;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
}
@media screen and (min-width: 960px) {
  .box-menu {
    transform: translateY(-100%);
    height: 410px;
    top: -100%;
    left: 0;
    padding: 0;
  }
}
.box-menu ul.menu-list-sp {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.box-menu ul.menu-list-sp::after {
  width: 32%;
  height: 0;
  display: block;
  content: "";
}
.box-menu ul.menu-list-sp li {
  display: flex;
  flex-direction: column;
  width: 32%;
  margin-bottom: 8px;
  list-style: none;
}
.box-menu ul.menu-list-sp li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00839d;
  border-radius: 4px;
  padding: 12px 0;
  height: 100%;
  min-height: 0%;
  color: #00839d;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .box-menu ul.menu-list-sp {
    display: none;
  }
}
.box-menu .box-menu-inner {
  padding: 30px 5% 30px;
  margin-bottom: 40px;
}
@media screen and (min-width: 960px) {
  .box-menu .box-menu-inner {
    width: 900px;
    margin: 0 auto;
    padding: 50px 0 50px;
  }
}
@media screen and (min-width: 960px) {
  .box-menu .menu-sideWrap {
    display: flex;
    justify-content: space-around;
  }
}
.box-menu .menu-cate {
  margin-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .box-menu .menu-cate {
    width: 400px;
    margin-bottom: 20px;
  }
}
.box-menu .menu-cate h1 {
  border: 1px solid #00b4cb;
  background-color: #f5fcfc;
  padding: 2px 0;
  text-align: center;
  color: #00b4cb;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .box-menu .menu-cate h1 {
    background-color: #fff;
    margin-bottom: 16px;
    font-size: 20px;
    text-align: left;
    color: #00839d;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px dashed #00839d;
    padding-bottom: 2px;
  }
}
.box-menu .menu-cate ul {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 0 0;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .box-menu .menu-cate ul {
    padding: 0;
    width: 100%;
  }
}
.box-menu .menu-cate ul li {
  width: 25%;
  margin-bottom: 16px;
  list-style: none;
}
@media screen and (min-width: 960px) {
  .box-menu .menu-cate ul li {
    list-style: none inside;
    width: 180px;
    margin-right: 20px;
    margin-bottom: 8px;
  }
}
.box-menu .menu-cate ul li a {
  display: block;
  text-align: center;
  color: #444;
  font-size: 11px;
  line-height: 1.2;
}
@media screen and (min-width: 960px) {
  .box-menu .menu-cate ul li a {
    font-size: 16px;
    text-align: left;
  }
}
.box-menu .menu-cate ul li a img {
  width: 30px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}
@media screen and (min-width: 960px) {
  .box-menu .menu-cate ul li a img {
    width: 18px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
  }
}
.box-menu .nav-btn-box {
  width: 80%;
  margin: 20px auto;
}
@media screen and (min-width: 960px) {
  .box-menu .nav-btn-box {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin: 10px auto 0;
  }
}
.box-menu .nav-btn-box .btn-menu-investor a {
  display: block;
  border: 1px solid #00B4CB;
  border-radius: 4px;
  background-color: #00B4CB;
  margin-bottom: 16px;
  line-height: 3;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 960px) {
  .box-menu .nav-btn-box .btn-menu-investor a {
    width: 300px;
    margin-left: auto;
    font-size: 16px;
  }
}
.box-menu .nav-btn-box .btn-menu-logout a {
  display: block;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f9f9f9;
  line-height: 3;
  text-align: center;
  color: #555;
}
@media screen and (min-width: 960px) {
  .box-menu .nav-btn-box .btn-menu-logout a {
    width: 300px;
    margin: 0 8px;
    font-size: 16px;
  }
}

#nav-inputBtn:checked ~ .box-menu {
  position: fixed;
  top: 48px;
  right: 0;
  width: 100%;
  overflow-y: auto;
  background-color: #fff;
  box-shadow: none;
  transform: translateX(0%);
}
@media screen and (min-width: 768px) {
  #nav-inputBtn:checked ~ .box-menu {
    width: 80%;
  }
}
@media screen and (min-width: 960px) {
  #nav-inputBtn:checked ~ .box-menu {
    top: 72px;
    right: auto;
    left: 0;
    width: 100%;
    transform: translateY(0%);
  }
}

#nav-inputBtn:checked ~ .box-close {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 200;
}

#nav-inputBtn:checked ~ .box-close .btn-close {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 48px;
  left: 0;
  background: rgba(3, 3, 3, 0.5);
  display: block;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  #nav-inputBtn:checked ~ .box-close .btn-close {
    top: 72px;
  }
}

.btn-open {
  position: fixed;
  top: 2px;
  right: 15px;
  display: inline-block;
  background-color: transparent;
  cursor: pointer;
  z-index: 500;
}
@media screen and (min-width: 960px) {
  .btn-open {
    display: none;
  }
}

.btn-open .a2 {
  opacity: 1;
}

.btn-open span {
  display: block;
  background-color: #888;
  width: 34px;
  height: 2px;
  border-radius: 5px;
  margin: 10px auto;
  transition: all 0.2s;
}

#nav-inputBtn:checked ~ .btn-open .a1 {
  transform: translateY(12px) rotateZ(-45deg);
}

#nav-inputBtn:checked ~ .btn-open .a2 {
  opacity: 0;
}

#nav-inputBtn:checked ~ .btn-open .a3 {
  transform: translateY(-12px) rotateZ(45deg);
}

.box-close {
  height: 0;
}

.nav-login {
  margin: 0;
}

.nav-user {
  display: flex;
  align-items: center;
  position: fixed;
  top: 10px;
  right: 110px;
  z-index: 600;
  cursor: pointer;
  /*　現在はまだ使わず
  .ico-diamond { // ダイアモンド会員
      background-color:#333;
  }
  .ico-gold { // ゴールド会員
      background-color:#eaba00;
  }
  .ico-silver { // シルバー会員
      background-color:#888;
  }
  .ico-bronze { // ブロンズ会員
      background-color:#a87300;
  }*/
}
@media screen and (min-width: 960px) {
  .nav-user {
    top: 16px;
    right: 16px;
  }
}
.nav-user .userimg-wrap {
  position: relative;
}
.nav-user .userimg-wrap img {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #ddd;
  border-radius: 50%;
  vertical-align: middle;
  /* 現在はまだ使わず
  &.current-diamond { // ダイアモンド会員
       border: 1px solid #333;
  }
  &.current-gold { // ゴールド会員
      border: 1px solid #eaba00;
  }
  &.current-silver { // シルバー会員
      border: 1px solid #888;
  }
  &.current-bronze { // ブロンズ会員
      border: 1px solid #a87300;
  }*/
}
@media screen and (min-width: 960px) {
  .nav-user .userimg-wrap img {
    width: 40px;
    height: 40px;
  }
}
.nav-user .userimg-wrap img.current-premium {
  border: 1px solid #0a286c;
}
.nav-user .userimg-wrap img.current-platinum {
  border: 1px solid #0086ce;
}
.nav-user .person {
  width: 8em;
  margin-right: 4px;
  font-size: 12px;
  text-align: right;
  line-height: 1.2;
  display: inline-block;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .nav-user .person {
    font-size: 13px;
  }
}
.nav-user .ico-status {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  color: #fff;
  font-size: 8px;
  font-weight: bold;
  padding-left: 1px;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 960px) {
  .nav-user .ico-status {
    width: 54px;
    height: 14px;
    border-radius: 7px;
    bottom: -9px;
    font-size: 9px;
  }
}
.nav-user .ico-premium {
  padding-left: 0;
  background-color: #0a286c;
  color: #fff;
  line-height: 1.3;
  font-size: 8px;
}
@media screen and (min-width: 960px) {
  .nav-user .ico-premium {
    line-height: 1.6;
    font-size: 9px;
  }
}
.nav-user .ico-platinum {
  background-color: #0086ce;
}
.nav-user .status-for-sp {
  display: block;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .nav-user .status-for-sp {
    display: none;
  }
}
.nav-user .status-for-pc {
  display: none;
}
@media screen and (min-width: 960px) {
  .nav-user .status-for-pc {
    display: block;
    text-align: center;
  }
}

/* headerCommon.blade.php */
.non-cursor .nav-user {
  cursor: auto;
}

.box-menu-common {
  height: 500px;
}
@media screen and (min-width: 960px) {
  .box-menu-common {
    bottom: 260px;
  }
}

@media screen and (min-width: 960px) {
  #nav-inputBtn:checked ~ .box-menu-common {
    height: 260px;
  }
}

.menu-user-setting {
  width: 100%;
  margin-bottom: 30px;
}
.menu-user-setting h1 {
  border: 1px solid #00b4cb;
  background-color: #f5fcfc;
  padding: 2px 0;
  text-align: center;
  color: #00b4cb;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .menu-user-setting h1 {
    background-color: #fff;
    margin-bottom: 16px;
    font-size: 20px;
    text-align: left;
    color: #00839d;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px dashed #00839d;
    padding-bottom: 2px;
  }
}
.menu-user-setting ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 16px 0 0;
  width: 90%;
  margin: 0 auto;
  list-style: none;
}
@media screen and (min-width: 960px) {
  .menu-user-setting ul {
    padding: 0;
    width: 100%;
  }
}
.menu-user-setting ul li {
  width: 25%;
  margin-bottom: 16px;
}
@media screen and (min-width: 960px) {
  .menu-user-setting ul li {
    list-style: none inside;
    width: 180px;
    margin-right: 20px;
    margin-bottom: 8px;
  }
}
.menu-user-setting ul li a {
  display: block;
  text-align: center;
  color: #444;
  font-size: 11px;
  line-height: 1.2;
}
@media screen and (min-width: 960px) {
  .menu-user-setting ul li a {
    font-size: 16px;
    text-align: left;
  }
}
.menu-user-setting ul li a img {
  width: 30px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}
@media screen and (min-width: 960px) {
  .menu-user-setting ul li a img {
    width: 18px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
  }
}

/* headerNotLoggedIn.blade.php */
nav.notloggedin {
  padding-top: 8px;
}
@media screen and (min-width: 960px) {
  nav.notloggedin {
    padding-top: 14px;
  }
}
nav.notloggedin .wrap-nav {
  margin-right: 0;
}
nav.notloggedin .btn-login-icon {
  margin-right: 48px;
  padding-top: 4px;
}
nav.notloggedin .btn-login-icon a {
  font-size: 28px;
  color: #777;
}
@media screen and (min-width: 960px) {
  nav.notloggedin .btn-login-icon {
    display: none;
  }
}
nav.notloggedin .notloggedein-side-wrap-pc {
  display: none;
}
@media screen and (min-width: 960px) {
  nav.notloggedin .notloggedein-side-wrap-pc {
    display: flex;
  }
}
nav.notloggedin .regist-list-pc {
  display: none;
}
@media screen and (min-width: 960px) {
  nav.notloggedin .regist-list-pc {
    display: flex;
  }
  nav.notloggedin .regist-list-pc .regist-list-login {
    list-style: none;
  }
  nav.notloggedin .regist-list-pc .regist-list-login a {
    display: block;
    border-radius: 4px;
    width: 96px;
    height: 48px;
    background-color: #00b4cb;
    margin-right: 16px;
    margin-left: 16px;
    color: #fff;
    text-align: center;
    line-height: 48px;
    font-size: 16px;
    transition: 0.3s;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.4);
  }
  nav.notloggedin .regist-list-pc .regist-list-login a:hover {
    text-decoration: none;
    box-shadow: 2px 8px 8px 0 rgba(0, 0, 0, 0.3);
    opacity: 0.9;
  }
  nav.notloggedin .regist-list-pc .regist-list-regist {
    list-style: none;
  }
  nav.notloggedin .regist-list-pc .regist-list-regist a {
    display: block;
    border-radius: 4px;
    width: 96px;
    height: 48px;
    background-color: #ff4d6b;
    color: #fff;
    text-align: center;
    line-height: 48px;
    font-size: 16px;
    transition: 0.3s;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.4);
  }
  nav.notloggedin .regist-list-pc .regist-list-regist a:hover {
    text-decoration: none;
    box-shadow: 2px 8px 8px 0 rgba(0, 0, 0, 0.3);
    opacity: 0.9;
  }
}

.navbar-drawer-notloggedin #nav-inputBtn:checked ~ .box-close {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 200;
}
@media screen and (min-width: 960px) {
  .navbar-drawer-notloggedin #nav-inputBtn:checked ~ .box-close {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .navbar-drawer-notloggedin #nav-inputBtn:checked ~ .box-close .btn-close {
    display: none;
  }
}
.navbar-drawer-notloggedin .box-menu-notloggedin {
  height: 430px;
}
@media screen and (min-width: 960px) {
  .navbar-drawer-notloggedin .box-menu-notloggedin {
    display: none;
  }
}
.navbar-drawer-notloggedin .regist-list-sp .regist-list-login {
  list-style: none;
}
.navbar-drawer-notloggedin .regist-list-sp .regist-list-login a {
  display: block;
  border-radius: 4px;
  width: 80%;
  height: 48px;
  background-color: #00b4cb;
  margin: 0 auto 16px;
  color: #fff;
  text-align: center;
  line-height: 48px;
  font-size: 16px;
}
@media screen and (min-width: 960px) {
  .navbar-drawer-notloggedin .regist-list-sp .regist-list-login a {
    width: 300px;
    margin-right: 40px;
  }
}
.navbar-drawer-notloggedin .regist-list-sp .regist-list-regist {
  list-style: none;
}
.navbar-drawer-notloggedin .regist-list-sp .regist-list-regist a {
  display: block;
  border-radius: 4px;
  width: 80%;
  height: 48px;
  background-color: #ff4d6b;
  margin: 0 auto 16px;
  color: #fff;
  text-align: center;
  line-height: 48px;
  font-size: 16px;
}
@media screen and (min-width: 960px) {
  .navbar-drawer-notloggedin .regist-list-sp .regist-list-regist a {
    width: 300px;
  }
}
@media screen and (min-width: 960px) {
  .navbar-drawer-notloggedin .regist-list-sp {
    display: flex;
    width: 640px;
    margin: 0 auto;
  }
}

/* その他 */
.br-sp {
  display: block;
}
@media screen and (min-width: 960px) {
  .br-sp {
    display: none;
  }
}

#btn-totop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
@media screen and (min-width: 960px) {
  #btn-totop {
    bottom: 30px;
  }
}
#btn-totop a {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #00b4cb;
  color: #fff;
  text-align: center;
  padding-top: 6px;
  transition: 0.3s;
  box-shadow: 2px 8px 8px rgba(0, 0, 0, 0.3);
  outline: none;
}
#btn-totop a i.fas {
  font-size: 32px;
}

.btn-totop-animation {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(5px);
}

.btn-totop-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fixed-footer-btn {
  position: fixed;
  bottom: 12px;
  left: 0;
  width: 80%;
  z-index: 100;
  display: flex;
  align-items: center;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  .fixed-footer-btn {
    right: 64px;
    left: initial;
    bottom: 22px;
    width: 100%;
  }
}

.btn-newProject {
  width: 100%;
  padding: 7px;
  z-index: 100;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .btn-newProject {
    position: static;
    margin-right: 24px;
    width: auto;
  }
}

.btn-newProject a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 48px;
  border: 3px solid #FF4D6B;
  border-radius: 4px;
  background-color: #fff;
  margin-left: 24px;
  box-shadow: 2px 8px 8px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  color: #ff4d6b;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .btn-newProject a {
    background-color: #FF4D6B;
    padding: 0 30px 0 50px;
    color: #fff;
  }
}

.btn-newProject a:hover {
  box-shadow: 3px 10px 10px 0 rgba(0, 0, 0, 0.2);
}

.btn-newProject p {
  position: absolute;
  top: -7px;
  left: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  flex-flow: column wrap;
  vertical-align: top;
  width: 56px !important;
  height: 56px;
  border: 3px solid #FF4D6B;
  background-color: #ffd;
  margin-left: -27px;
}

.btn-newProject p i.fas {
  font-size: 20px;
  color: #FF4D6B;
}

.btn-animation {
  transition: 0.3s;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.4);
}
.btn-animation:hover {
  box-shadow: 2px 8px 8px 0 rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}/*# sourceMappingURL=header.css.map */