/* ======================= VARIABLE ====== */
/* placeholder color */
/* ======================= IMPORT ====== */
/*=================

      content.scss

=======================*/
/*top*/
.bg_beige {
  background-color: #FFFEEA;
}

.chat_page {
  padding: 40px 0;
}

.form_block {
  margin: 0 0 40px;
  width: 100%;
  display: none;
}

.form_block.active {
  display: block;
}

.form_block:last-child {
  margin: 0 0 0;
}

.form_block .form_ca_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 30px;
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.form_block .form_ca_block.active {
  -webkit-animation: fadeUp 1s ease forwards;
  animation: fadeUp 1s ease forwards;
}

.form_block .form_ca_block .form_ca_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: url(../images/img_ca.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 20px 0 0;
  border: 2px solid #FF5E5B;
}

.form_block .form_ca_block .form_ca_detail {
  width: calc(100% - 80px);
}

.form_block .form_ca_block .form_ca_detail.active {
  -webkit-animation: fadeUp 1s ease forwards;
  animation: fadeUp 1s ease forwards;
}

.form_block .form_ca_block .form_ca_detail .form_ca_name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  margin: 0 0 5px;
}

.form_block .form_ca_block .form_ca_detail .form_ca_text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  padding: 10px;
  border-radius: 0 20px 20px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  margin: 0 0 10px;
}

.form_block .form_ca_block .form_ca_detail .form_ca_text .bold {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #FFF5AC));
  background: linear-gradient(transparent 40%, #FFF5AC 40%);
}

.form_block .form_ca_block .form_ca_detail .form_ca_text .text_orange {
  font-weight: 700;
  color: #F39826;
}

.form_block .form_ca_block .form_ca_detail .form_ca_text:last-child {
  margin: 0 0 0;
}

.form_block .form_ca_block .form_ca_detail .form_ca_text_note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #F39826;
  line-height: 1.5;
  padding: 10px;
  border-radius: 0 20px 20px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  margin: 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.form_block .form_ca_block .form_ca_detail .form_ca_text_note .note_icon {
  width: 18px;
}

.form_block .form_ca_block .form_ca_detail .form_ca_text_note .note {
  width: calc(100% - 18px);
}

.form_block .form_input_block {
  padding: 15px;
  background-color: #FDF2E3;
  border-radius: 10px;
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.form_block .form_input_block.active {
  -webkit-animation: fadeUp 1s ease forwards;
  animation: fadeUp 1s ease forwards;
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.form_checkbox_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 -10px;
}

.form_checkbox_block label {
  width: calc((100% - 10px) /2);
  margin: 0 0 10px;
}

.form_checkbox_block .input_radio {
  display: none;
}

.form_checkbox_block .radio_text {
  display: block;
  width: 100%;
  border: 1px solid #F39826;
  border-radius: 6px;
  background-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  padding: 12px 10px 12px 40px;
  position: relative;
}

.form_checkbox_block .radio_text:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #F39826;
  border-radius: 50%;
}

.input_radio:checked + .radio_text {
  background-color: #F39826;
  color: #fff;
}

.input_radio:checked + .radio_text::before {
  background-image: url(../images/icon_check.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 14px;
}

.form_input_text_list {
  margin: 0 0 20px;
}

.form_input_text_list .form_input_text_item {
  margin: 0 0 15px;
}

.form_input_text_list .form_input_text_item:last-child {
  margin: 0 0 0;
}

.form_input_text_list .form_input_text_item .form_input_text_item_title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 5px;
}

.form_input_text_list .form_input_text_item .form_input_text_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.form_input_text_list .form_input_text_item .form_input_text_block .input_text {
  width: calc((100% - 10px) /2);
  padding: 12px 10px;
  background-color: #fff;
  border: none;
  outline: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  border-radius: 6px;
}

.form_input_text_list .form_input_text_item .form_input_text_block .input_text::-webkit-input-placeholder {
  color: #888;
}

.form_input_text_list .form_input_text_item .form_input_text_block .input_text::-ms-input-placeholder {
  color: #888;
}

.form_input_text_list .form_input_text_item .form_input_text_block .input_text::placeholder {
  color: #888;
}

.form_input_text_list .form_input_text_item .form_input_text_block .input_text:focus {
  outline: 2px solid #F39826;
}

.form_input_text_list .form_input_text_item .form_input_tel_block {
  width: 100%;
  margin: 0 0 10px;
}

.form_input_text_list .form_input_text_item .form_input_tel_block .input_tel {
  width: 100%;
  padding: 12px 10px;
  background-color: #fff;
  border: none;
  outline: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  border-radius: 6px;
}

.form_input_text_list .form_input_text_item .form_input_tel_block .input_tel::-webkit-input-placeholder {
  color: #888;
}

.form_input_text_list .form_input_text_item .form_input_tel_block .input_tel::-ms-input-placeholder {
  color: #888;
}

.form_input_text_list .form_input_text_item .form_input_tel_block .input_tel::placeholder {
  color: #888;
}

.form_input_text_list .form_input_text_item .form_input_tel_block .input_tel:focus {
  outline: 2px solid #F39826;
}

.form_input_text_list .form_input_text_item .supplement {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #333;
  line-height: 1.5;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form_input_text_list .form_input_text_item .supplement .supplement_icon {
  width: 18px;
}

.form_input_text_list .form_input_text_item .supplement .supplement_text {
  width: calc(100% - 18px);
}

.form_input_next_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  border-radius: 30px;
  background-color: #F39826;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.form_input_next_btn.active {
  background-color: #F39826;
}

.form_input_textarea_block {
  width: 100%;
  margin: 0 0 20px;
}

.form_input_textarea_block .form_input_textarea {
  width: 100%;
  height: 120px;
  resize: none;
  padding: 12px 10px;
  background-color: #fff;
  border: none;
  outline: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  border-radius: 6px;
}

.form_input_textarea_block .form_input_textarea::-webkit-input-placeholder {
  color: #888;
}

.form_input_textarea_block .form_input_textarea::-ms-input-placeholder {
  color: #888;
}

.form_input_textarea_block .form_input_textarea::placeholder {
  color: #888;
}

.form_input_textarea_block .form_input_textarea:focus {
  outline: 2px solid #F39826;
}

.policy_confirmationtext {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 15px;
}

.policy_confirmationtext a {
  color: #5093FF;
  text-decoration: underline;
}

.line_btn2{
  width: 100%;
  padding: 12px 10px;
  background-color: #FF5E5B;
  border: 3px solid #fff;
  border-radius: 50px;
  text-align: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form_submit_btn {
  width: 100%;
  padding: 12px 10px;
  background-color: #FF5E5B;
  border: 3px solid #fff;
  border-radius: 50px;
  text-align: center;
}

.form_submit_btn .form_submit_btn_sub_text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  margin: 0 0 5px;
}

.form_submit_btn .form_submit_btn_text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
}

/*thanks*/
.thanks {
  padding: 30px 0 40px;
  background-color: #FFFEEA;
}

.thanks_icon {
  width: 52px;
  margin: 0 auto 20px;
}

.thanks_icon img {
  width: 100%;
}

.thanks_title {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #FF5E5B;
  line-height: 1.5;
  margin: 0 0 20px;
}

.thanks_text {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin: 0 0 40px;
}

.thanks_text .bold {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #FFF5AC));
  background: linear-gradient(transparent 40%, #FFF5AC 40%);
}

.line_box {
  position: relative;
  padding: 30px 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 10px;
}

.line_box:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 20px;
  width: calc(100% - 40px);
  height: 7px;
  background-color: #4CC764;
  border-radius: 4px;
}

.line_box .line_box_title {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 20px;
}

.line_box .line_box_title span {
  background-image: url(../images/bg_line.svg);
  background-repeat: repeat-x;
  background-position: left bottom;
}

.line_box .line_box_text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin: 0 0 20px;
}

.line_box .line_box_text .text_orange {
  font-weight: 700;
  color: #F39826;
}

.line_box .line_box_qr {
  width: 120px;
  margin: 0 auto 30px;
}

.line_box .line_box_qr img {
  width: 100%;
}

.line_box .line_btn_wrap .line_btn_text {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 7px;
}

.line_box .line_btn_wrap .line_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  border-radius: 30px;
  background-color: #4CC764;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  padding: 5px 10px;
}

.line_box .line_btn_wrap .line_btn img {
  width: 30px;
  margin: 0 5px 0 0;
}

/*=================

      common.scss

=======================*/
.common_wrap {
  padding: 0 15px;
}

.common_inner {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

/*=================

      header.scss

=======================*/
.header_wrap {
  width: 100%;
}

.header_wrap .header_img {
  width: 100%;
}

.header_wrap .header_img .header_img_link {
  display: block;
}

.header_wrap .header_img .header_img_link img {
  width: 100%;
}

/*=================

      footer.scss

=======================*/
footer {
  padding: 30px 0 20px;
  background-color: #FF5E5B;
}

.footer_logo {
  display: block;
  width: 160px;
  margin: 0 auto 20px;
}

.footer_logo img {
  width: 100%;
}

.copy {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  line-height: 1.5;
}

/*=================

      policy.scss

=======================*/
.privacy_header_wrap {
  width: 100%;
  height: 56px;
}

.privacy_header_inner {
  width: 100%;
  height: 56px;
  background-color: #FF5E5B;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.privacy_header_inner .common_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 56px;
}

.privacy_header_inner .common_inner .privacy_header_logo {
  display: block;
  width: 160px;
}

.privacy_header_inner .common_inner .privacy_header_logo img {
  width: 100%;
}

.policy_page {
  padding: 30px 0 40px;
  background-color: #fff;
}

.policy_title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 30px;
  padding: 0 0 0 20px;
  position: relative;
}

.policy_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  border-radius: 3px;
  background-color: #FF5E5B;
}

.policy_block_wrap .policy_block {
  margin: 0 0 30px;
}

.policy_block_wrap .policy_block:last-child {
  margin: 0 0 0;
}

.policy_block_wrap .policy_block .policy_block_text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .policy_block_wrap .policy_block .policy_block_text {
    font-size: 14px;
  }
}

.policy_block_wrap .policy_block .policy_block_title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}

.policy_block_wrap .policy_block .policy_list {
  padding: 0 0 0 20px;
  list-style: disc;
}

.policy_block_wrap .policy_block .policy_list .policy_item {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  line-height: 2;
}

/* ======================= BASE ====== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/*font*/
.fg_l {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.fg_r {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

.fg_m {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.fg_b {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.fg_bl {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
}

.fe_b {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
}

.mb_0 {
  margin-bottom: 0;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_50 {
  margin-bottom: 50px;
}

.mt_10 {
  margin-top: 10px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_50 {
  margin-top: 50px;
}

.mt_80 {
  margin-top: 80px;
}

.mr_5 {
  margin-right: 5px;
}

.mr_20 {
  margin-right: 20px;
}

@media only screen and (max-width: 999px) {
  .sp_mb_10 {
    margin-bottom: 10px;
  }
}

.common_pc {
  display: block;
}

@media only screen and (max-width: 999px) {
  .common_pc {
    display: none;
  }
}

.common_sp {
  display: none;
}

@media only screen and (max-width: 999px) {
  .common_sp {
    display: block;
  }
}

@media only screen and (max-width: 840px) {
  .common_pc840 {
    display: none;
  }
}

.common_sp840 {
  display: none;
}

@media only screen and (max-width: 840px) {
  .common_sp840 {
    display: block;
  }
}

.common_pc640 {
  display: block;
}

.common_pc640.height_100 {
  height: 100%;
}

@media only screen and (max-width: 640px) {
  .common_pc640 {
    display: none;
  }
}

.common_sp640 {
  display: none;
}

@media only screen and (max-width: 640px) {
  .common_sp640 {
    display: block;
  }
}

.mb_0 {
  margin-bottom: 0;
}

body {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

body ul {
  list-style: none;
}

body a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  body a:hover {
    opacity: 0.7;
  }
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}