@charset "UTF-8";

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  font-style: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  line-height: 0.8;
  background-color: #deeed2;
  width: 100%;
  height: 100vh;
  max-width: 750px;
  margin: 0 auto;
}

img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

a {
  color: #3a8a14;
}

a:link {
  color: #fff;
}

a:active {
  color: #3a8a14;
}

/* ==============================================================
*  レイアウト
* ============================================================ */
header {
  position: relative;
}

footer {
  position: sticky;
  top: 100vh;
  padding-top: 4%;
  background-color: #ddd;
  width: 100%;
}

.header_btn {
  color: #fff;
  width: 35%;
  display: inline-block;
  font-weight: bold;
  background: #79af4f;
  text-decoration: none;
  text-align: center;
  position: absolute;
  line-height: 2.6;
  height: 40px;
  border-radius: 40px;
  top: 20px;
  right: 20px;
}

.header_btn::after {
  position: absolute;
  content: "\f0da";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  top: 50%;
  right: auto;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 2.1rem;
  left: 25px;
}

@media (max-width: 767px) {
  .header_btn {
    line-height: 1.8;
    height: 20px;
    border-radius: 20px;
    font-size: 1.0rem;
    top: 10px;
    right: 10px;
    padding-left: 5px;
  }

  .header_btn::after {
    font-size: 1.5rem;
    left: 5px;
  }
}

.header_btn:active {
  color: #fff;
}

.header_btn:hover {
  opacity: 0.6;
}

.question_container {
  margin: 0 auto;
  width: 90%;
  padding: 30px 0;
}

.operator_container {
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}

.operator_icon {
  width: 18%;
  margin-right: 2%;
}

.speechBubble {
  position: relative;
  width: 80%;
  height: auto;
  padding: 20px 20px 20px 10px;
  background-color: #fff;
  border-radius: 20px;
}

.speechBubble p {
  font-size: 1.6rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .speechBubble p {
    font-size: 1.4rem;
  }
}

.speechBubble::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  left: 25px;
  bottom: -10px;
  border-left: 20px solid transparent;
  border-top: 20px solid transparent;
  border-right: 20px solid #fff;
  border-bottom: 20px solid #fff;
}

.speechBubble::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  left: 17px;
  bottom: -15px;
  border-left: 15px solid transparent;
  border-top: 15px solid transparent;
  border-right: 15px solid #deeed2;
  border-bottom: 15px solid #deeed2;
}

/* ==============================================================
*  モジュール（汎用的に使用できるスタイル）
* ============================================================ */
.btn_container {
  color: #333;
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding-bottom: 20px;
}

.btn_container input[type="radio"] {
  display: none;
}

.btn_container input[type="radio"]:checked+.label {
  background-color: #79af4f;
}

.btn_container .label {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 2px solid #79af4f;
  height: 48px;
  border-radius: 24px;
  width: 40%;
}

.next {
  color: #666;
  display: block;
  margin: 0 auto;
  width: 90%;
  background-color: #ddd;
  padding: 15px;
  border-radius: 20px;
  text-decoration: none;
  position: relative;
}

.next:active {
  color: #fff;
}

.next span {
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  top: -22px;
  right: 0;
  width: 42px;
  height: 46px;
  font-size: 14px;
  line-height: 1.1;
  padding: 0;
  color: #fff;
  pointer-events: none;
  transform: rotate(20deg);
  background-image: url(../img/remaining-steps.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.btn-stateActive {
  color: #fff;
  background-color: #f88a14;
}

.form_container {
  padding: 30px 5%;
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
  padding: 20px 0;
}

.form_container input[type="text"],
.form_container input[type="tel"],
.form_container input[type="email"],
.form_container select {
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 1.5rem;
  margin-bottom: 30px;
  padding: 10px 0 10px 10px;
  border-radius: 10px;
  border: 3px solid #ddd;
  background-color: #fff;
  color: #888;
  width: 90%;
}

.form_container option {
  font-size: 1.5rem;
}

.form_container p {
  padding-bottom: 20px;
}

.form_container label {
  display: block;
  text-align: left;
}

.form_container .input_container label {
  float: left;
  padding-left: 5%;
  margin-bottom: 10px;
}

.form_container .select_wrap {
  position: relative;
}

.form_container .select_wrap::after {
  position: absolute;
  top: 2.8em;
  right: 4em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #888;
  pointer-events: none;
}

@media (max-width: 767px) {
  .form_container .select_wrap::after {
    right: 1.9em;
  }
}

.submit {
  color: #666;
  background-color: #ddd;
  width: 90%;
  padding: 15px;
  border-radius: 30px;
  font-size: 1.5rem;
}

.btn-stateActive {
  color: #fff;
  background-color: #f88a14;
}

.termsOfService {
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 22px;
}

.termsOfService a:link {
  color: #7bc745;
  text-decoration: underline;
}

.copyRight {
  text-align: center;
}

.errorMessage {
  display: inline-block;
  color: red;
  padding-bottom: 10px;
}

[v-cloak] {
  display: none;
}

.sentence-paragraph {
  text-align: center;
  padding: 1rem 0 0 0;
}

.icon {
  margin: 0 0.5rem;
}

.company_info_container {
  width: 80%;
  background-color: #fff;
  margin: 0 auto;
  line-height: 1.5;
  height: 100%;
}

.company_info_title {
  color: #fff;
  text-align: center;
  background-color: #202020;
  width: 60%;
  margin: 0 auto 10px auto;
}

.company_info {
  text-align: center;
}