@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
}

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

html, body {
  height: 100vh;
  height: 100dvh;
}

body {
  font-feature-settings: "pwid";
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

address, caption, cite, code, em, th {
  font-style: normal;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, svg {
  vertical-align: top;
  border: 0;
}

li {
  list-style-type: none;
}

button, input, select, textarea {
  font-family: inherit;
}

fieldset {
  border: 0;
}

input[type=search] {
  border-radius: 0;
  -webkit-appearance: none;
}

input[type=date] {
  line-height: 1;
}

button, [type=button], [type=reset], [type=submit], [role=button] {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

button, [type=reset], [type=submit] {
  -webkit-appearance: button;
}

object {
  pointer-events: none;
}

html {
  font-size: 6.25%;
}

body {
  font-size: 14px;
  font-size: 14rem;
  background: #fff;
  color: #4E4E4E;
  font-family: "Barlow", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, "MS PGothic", sans-serif;
  line-height: 0;
  line-height: 1.4;
}

input, textarea {
  color: #4E4E4E;
}

a {
  color: linear-gradient(47deg, #02AAB0 5.98%, #00CDAC 85.82%);
  transition: all 0.1s linear;
  text-decoration: none;
}
a:hover {
  color: #00ADD1;
  opacity: 0.75;
  text-decoration: none;
}
a:visited {
  color: #00ADD1;
}
a:active {
  color: #00ADD1;
}
a:focus {
  color: #00ADD1;
}

.fufu-header {
  height: 90px;
  padding: 33px 0;
  position: relative;
  text-align: center;
}

.fufu-header__ttl {
  font-size: 15px;
  font-size: 15rem;
  color: #797980;
  font-weight: 700;
}

.fufu-header__back {
  height: 25px;
  position: absolute;
  left: 15px;
  top: 33px;
  width: 15px;
}

.fufu-basic {
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
  max-width: 570px;
}

.fufu-form__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fufu-form__wrapper lavel {
  color: #60626C;
  font-weight: 700;
  margin-bottom: 10px;
}

.fufu-btnset {
  align-items: center;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  left: 0;
  position: fixed;
  width: 100%;
}

.fufu-btn {
  font-size: 14px;
  font-size: 14rem;
  border: none;
  border-radius: 30px;
  color: #FFF;
  background: linear-gradient(47deg, #02AAB0 5.98%, #00CDAC 85.82%);
  font-weight: 700;
  min-width: 220px;
  padding: 18px 32px;
  width: fit-content;
}

.fufu-txtbtn {
  font-size: 14px;
  font-size: 14rem;
  background: linear-gradient(47deg, #02AAB0 5.98%, #00CDAC 85.82%);
  background-clip: text;
  -webkit-background-clip: text;
  border: 0;
  color: transparent;
  font-weight: 700;
  text-decoration: underline;
}

.fufu-input {
  font-size: 14px;
  font-size: 14rem;
  appearance: none;
  background: #fff;
  border: 1px solid #CFD0D3;
  border-radius: 9999px;
  box-sizing: border-box;
  margin-top: 10px;
  padding: 15px;
  position: relative;
  width: 100%;
}
.fufu-input.-textarea {
  border-radius: 20px;
}
.fufu-input::placeholder {
  color: #CFD0D3;
}

.dialog {
  border: 0;
  max-height: none;
  max-width: none;
  position: fixed;
  animation: fadeIn 0.1s ease-out;
  background: rgba(0, 0, 0, 0.3);
  height: 100vh;
  height: 100dvh;
  top: 0;
  width: 100vw;
}

.dialog__wrapper {
  font-size: 18px;
  font-size: 18rem;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  height: fit-content;
  margin: 20vh auto auto;
  max-height: 50vh;
  overflow: auto;
  padding: 30px;
  text-align: center;
  width: 300px;
}

.dialog__header {
  margin: 40px 20px 30px;
  text-align: center;
}

.dialog__ttl {
  font-size: 18px;
  font-size: 18rem;
  line-height: 1.4;
  margin-bottom: 30px;
}

.dialog__body {
  margin: 0 30px 30px;
}

.dialog__action {
  display: flex;
  gap: 17px;
  justify-content: center;
  margin-bottom: 30px;
}

.dialog__close.-pc {
  font-size: 14px;
  font-size: 14rem;
  display: block;
  margin: 0 auto 30px;
}

.Loader {
  display: none;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000000;
}

.Loader__bg {
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 100%;
  position: absolute;
}

.Loader__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
