@charset "utf-8";

body {
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  background-color: #ECF2FF;
  text-align: center;
  color: #3C342F;
  min-height: 100vh;
  position: relative;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.sp-br {
  display: none;
}

body header {
  width: 100%;
  text-align: center;
  padding-top: 12px;
}

body header img {
  width: 170px;
}

body main {
  padding: 24px 20% 0;
}

body main .img-wrapper {
  margin: 0 auto;
}

body main .img-wrapper img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 160px;
  border: 10px solid #F0F0F3;
  box-shadow: -10px -10px 30px #ffffff, 10px 10px 30px rgba(68,68,75,.2);
}

body main .description-wrapper h1 {
  font-size: 22px;
}

body main .description-wrapper p {
  font-size: 16px;
}

.link-wrapper {
  padding-top: 24px;
}

.modal {
  backdrop-filter: blur(4px);
}

.modal-content {
  background: linear-gradient(135deg, #FFE126, #FF0D77);
  border-radius: 6px;
  color: #ffffff;
  width: 80%;
  max-width: 400px;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
} 

.modal-header {
  border: none;
  justify-content: end;
}

.modal-body {
  padding: 0 0 24px 0;
}

.modal-body h2 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}

button {
  outline: none;
  appearance: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.btn-neumo {
  background-color: #EBF1FE;
  border: 1px solid #EBF6FF;
  border-radius: 20px;
  box-shadow: -10px -10px 30px #ffffff, 10px 10px 30px rgba(68,68,75,.2);
  color: #3C342F;
  font-size: 16px;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 24px auto;
  text-decoration: none;
}

.btn-neumo:hover {
  box-shadow: inset -8px -8px 30px #ffffff, inset 8px 8px 30px rgba(68,68,75,.2);
}

.btn-neumo img {
  margin-left: auto;
  margin-right: 0;
  width: 32px;
}

body footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 12px;
}

body footer a:not(last-child) {
  margin-right: 36px;
}

body footer a img {
  width: 36px;
}

.border-text {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}

.border-text:before,
.border-text:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #ffffff;
}

.border-text:before {
  margin-right: 1rem;
}

.border-text:after {
  margin-left: 1rem;
}

.postForm {
  margin: 0 auto 12px;
  height: 36px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 4px;
  max-width: 280px;
  position: relative;
  display: flex;
  justify-content: center;
}

.postForm input {
  border: none;
  width: 100%;
  border-radius: 4px;
  padding-left: 16px;
}

.postForm input::placeholder {
  color: FFCDAF;
  font-size: 12px;
} 

.postForm button {
  width: 40px;
  background-color: #2CCDDC;
  border-radius: 0 4px 4px 0;
}

.postForm button img {
  width: 21px;
  height: 18px;
}

@media (max-width: 991px) {
  body main .img-wrapper img {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 600px) {
  body main {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
  body header img {
    width: 120px;
  }
  body main .img-wrapper img {
    width: 200px;
    height: 200px;
  }
  .btn-neumo {
    font-size: 12px;
    padding: 20px 20px;
  }
  .btn-neumo img {
    width: 24px;
  }
  body main .description-wrapper h1 {
    font-size: 16px;
  }
  body main .description-wrapper p {
    font-size: 12px;
  }
  body footer a:not(last-child) {
    margin-right: 20px;
  }
  body footer a img {
    width: 24px;
  }
}