@charset "UTF-8";
/******************************************************************

Stylesheet: ベーススタイル

******************************************************************/
body {
  font-family: "Poppin", "Noto Sans JP", sans-serif;
}

@font-face {
  src: url("../resources/fonts/NotoSansJP-Regular.woff") format("woff");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../resources/fonts/NotoSansJP-Bold.woff") format("woff");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../resources/fonts/Poppins-Regular.woff") format("woff");
  font-family: "Poppin";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../resources/fonts/Poppins-Bold.woff") format("woff");
  font-family: "Poppin";
  font-style: normal;
  font-display: swap;
}
.sp {
  display: none;
}

main {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.contents {
  display: flex;
  width: 100%;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  background: #F8FEFF;
}

.w-100 {
  width: 100%;
}

.top-text {
  display: block;
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}

.question {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

p {
  margin-bottom: 0;
}
p.large {
  font-size: 28px;
  font-weight: 700;
}
p.medium {
  font-size: 24px;
  font-weight: 700;
}

form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
form div {
  display: flex;
  padding: 12px;
  font-size: 24px;
  align-self: stretch;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #979797;
  background: #FFF;
}
form input {
  width: 26px;
  height: 26px;
  margin-right: 8px;
}

.contact-area {
  text-align: center;
}
.contact-area p {
  line-height: 1.8;
}
.contact-area .medium {
  margin: 16px auto 8px;
}

.btn {
  display: flex;
  padding: 24px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 40px;
  color: #FFF;
  background: #FA9D12;
  border: 1px solid #FA9D12;
  position: relative;
  transition: all 0.3s;
}
.btn p {
  font-size: 22px;
}
.btn svg {
  fill: #fff;
  position: absolute;
  right: 24px;
  transition: all 0.3s;
}

.btn:hover {
  color: #FA9D12;
  background: transparent;
  border: 1px solid #FA9D12;
  text-decoration: none;
}
.btn:hover svg {
  fill: #FA9D12;
  right: 16px;
}

.reverse {
  display: inline-block;
  transform: scaleX(-1);
}

@media (max-width: 480px) {
  /******************************************************************

  Stylesheet: 480px以上(スマホの横向き)のモニタで適用

  ******************************************************************/
  .sp {
    display: block;
  }
  .top-text {
    display: block;
    color: #000;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
  }
  .question {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
  }
  p {
    margin-bottom: 0;
  }
  p.large {
    font-size: 22px;
    font-weight: 700;
  }
  p.medium {
    font-size: 22px;
    font-weight: 700;
  }
  form div {
    font-size: 18px;
    align-self: stretch;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #979797;
    background: #FFF;
  }
  .btn {
    padding: 16px;
  }
  .btn p {
    font-size: 16px;
  }
  .btn svg {
    fill: #fff;
    position: absolute;
    right: 16px;
    transition: all 0.3s;
  }
}/*# sourceMappingURL=style.css.map */