@charset "UTF-8";
/*---------------------------------------------------- input --*/
input, select, textarea {
  font-size: 1rem;
}

input[type=text]:focus, select:focus, textarea:focus {
  background-color: #F4FAFB;
}

input[type=text], select, textarea {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  line-height: 1.5;
  width: 100%;
  font-family: inherit;
  margin-bottom: 0.375rem;
  padding: 1rem 1.5rem;
  background-color: #FFF;
  resize: vertical;
  border: 1px solid #DEDEDE;
  border-radius: 4px;
  box-shadow: none;
  -webkit-transition: border-color .3s ease;
  transition: border-color .3s ease;
  outline: none;
  box-sizing: border-box;
}

input[type=text].error {
  border: 2px solid #F45070;
}

input[type=checkbox] {
  display: none;
}

input[name="shop"],
input[name="content_genre"],
input[name="content_genre_corporation"] {
  display: none;
}

input[name="shop"] + label,
input[name="content_genre"] + label,
input[name="content_genre_corporation"] + label {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  padding: 0 0 0 2rem;
  background-color: #fff;
  border-radius: 3px;
  cursor: pointer;
}

input[name="shop"] + label::before,
input[name="content_genre"] + label::before,
input[name="content_genre_corporation"] + label::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 17px;
  height: 17px;
  border: 2px solid #DEDEDE;
  border-radius: 50%;
}

input[name="shop"] + label::after,
input[name="content_genre"] + label::after,
input[name="content_genre_corporation"] + label::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translate(0, -50%);
  width: 11px;
  height: 11px;
  background: #00B2A9;
  border-radius: 50%;
  opacity: 0;
  transition: all .2s ease-out;
}

input[name="shop"] + label:first-of-type,
input[name="content_genre"] + label:first-of-type,
input[name="content_genre_corporation"] + label:first-of-type {
  margin-top: 1.25rem;
}

input[name="shop"] + label:last-of-type,
input[name="content_genre"] + label:last-of-type,
input[name="content_genre_corporation"] + label:last-of-type {
  margin-bottom: 1rem;
}

input[name="shop"]:checked + label::after,
input[name="content_genre"]:checked + label::after,
input[name="content_genre_corporation"]:checked + label::after {
  opacity: 1;
}

input[type="file"] {
  display: none;
}

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*---------------------------------------------------- form --*/
form {
  max-width: 720px;
  margin: 0 auto 5rem;
}

@media (max-width: 768px) {
  form {
    max-width: 560px;
    margin: 0 auto 3.75rem;
  }
}

.form_check_title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
}

@media (max-width: 480px) {
  .form_check_title {
    text-align: left;
  }
}

/*---------------------------------------------------- お問い合わせタブ --*/
#tab_menu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
  border-bottom: 2px solid #00B2A9;
}

@media (max-width: 768px) {
  #tab_menu {
    margin-bottom: 2.5rem;
  }
}

#tab_menu input[name="tab_item"] {
  display: none;
}

#tab_menu .tab_menu_item {
  position: relative;
  display: block;
  width: 50%;
  max-width: 540px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #303338;
  padding: 1.25rem 0.5rem;
  text-align: center;
  background-color: #FFF;
  border-top: 2px solid #E9F2F3;
  border-left: 2px solid #E9F2F3;
  border-right: 2px solid #E9F2F3;
  border-radius: 4px 4px 0 0;
  line-height: 1;
  letter-spacing: 0;
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  #tab_menu .tab_menu_item {
    font-size: 0.875rem;
  }
}

#tab_menu .tab_menu_item:first-of-type {
  margin-right: 0.5rem;
}

#tab_menu .tab_menu_item:hover,
#tab_menu input[name="tab_item"]:checked + .tab_menu_item {
  color: #FFF;
  border: 2px solid #00B2A9;
  background-color: #00B2A9;
  cursor: pointer;
}

/*---------------------------------------------------- stepbar --*/
.stepbar {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  z-index: 0;
}

@media (max-width: 768px) {
  .stepbar {
    max-width: 560px;
  }
}

.stepbar li {
  position: relative;
  float: left;
  width: 33.333%;
  font-size: 0.875rem;
  color: #E9F2F3;
  text-align: center;
}

.stepbar li::after {
  content: '';
  position: absolute;
  top: 28px;
  left: -50%;
  width: 100%;
  height: 2px;
  background-color: #E9F2F3;
  z-index: -1;
}

.stepbar li span {
  position: absolute;
  top: 20px;
  left: 50%;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: 0.625rem;
  background-color: #E9F2F3;
  border: 4px solid #E9F2F3;
  border-radius: 50%;
  line-height: 20px;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.stepbar li.active {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2A2A2A;
}

.stepbar li.active span {
  background-color: #FFF;
  border: 4px solid #00B2A9;
}

.stepbar li.active::after {
  background-color: #00B2A9;
}

.stepbar li.done span {
  background-color: #00B2A9;
}

.stepbar li:nth-child(1)::after {
  left: 0%;
  background-color: #00B2A9;
}

.stepbar li:nth-child(3)::after {
  width: 150%;
}

.stepbar li.check span::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 50%;
  width: 4px;
  height: 9px;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transform: translate(-50%, 0) rotate(45deg);
}

/*---------------------------------------------------- 入力 --*/
.form_list {
  clear: both;
  padding-top: 5rem;
}

.form_list > li {
  margin-bottom: 2.5rem;
}

.form_list > li:last-of-type {
  margin-bottom: 0;
}

.form_list_item_name {
  font-weight: 700;
  margin-bottom: 0.625rem;
  letter-spacing: 0;
}

.form_list_item_name span {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: normal;
  color: #FFF;
  margin-right: 0.5rem;
  padding: 0.375rem 0.5rem;
  border-radius: 2px;
  background: #F45070;
  letter-spacing: 0;
}

.form_list_item_name span.any {
  color: #FFF;
  background: #92A2A8;
}

.form_list_supplement_text {
  display: inline-block;
  font-size: 0.75rem;
  color: #92A2A8;
  margin-right: 1rem;
}

.form_list_error_text {
  position: relative;
  display: none;
  font-size: 0.75rem;
  color: #F45070;
  padding-left: 1.5rem;
}

.form_list_error_text::before {
  content: "!";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  background-color: #F45070;
  border-radius: 50%;
  transform: translate(0, -50%);
}

.form_list_receive_setting {
  margin-top: 0.375rem;
  letter-spacing: 0;
  line-height: 1.8;
}

.form_list_agree_check {
  text-align: center;
}

@media (max-width: 480px) {
  .form_list_agree_check {
    text-align: left;
  }
}

.form_list_btn_box {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.form_list_image_select {
  position: relative;
  display: block;
  width: 100%;
  font-family: inherit;
  margin-bottom: 0.375rem;
  padding: 1rem 1.5rem 1rem 3rem;
  background-color: #FFF;
  resize: vertical;
  border: 1px solid #DEDEDE;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
}

.form_list_image_select::before, .form_list_image_select::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 32px;
  display: block;
  width: 10px;
  height: 2px;
  background-color: #2A2A2A;
  transition: all 0.3s;
}

.form_list_image_select::before {
  transform: translate(0, -50%);
}

.form_list_image_select::after {
  transform: translate(0, -50%) rotate(90deg);
}

.form_list_image_select span {
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .form_list_image_select span {
    display: none;
  }
}

.form_list_image .form_list_supplement_text {
  display: block;
}

.form_list_image_area {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.form_list_image_area li {
  position: relative;
  margin: 0 1.25rem 1.5rem 0;
}

@media (max-width: 768px) {
  .form_list_image_area li {
    width: calc(100% / 5);
    margin: 0 0 1.5rem 0;
  }
  .form_list_image_area li:nth-child(n+4) {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .form_list_image_area li {
    width: calc((100% - 3.75rem) / 4);
    margin: 0 1.25rem 1.5rem 0;
  }
  .form_list_image_area li:nth-child(4n) {
    margin: 0 0 1.5rem 0;
  }
}

.form_list_image_area li:last-of-type {
  margin-right: 0;
}

.form_list_image_area li .form_list_image_close {
  position: absolute;
  top: -10px;
  left: 50px;
}

.form_list_image_area li .form_list_image_close div {
  display: inline-block;
  width: 25px;
  height: 25px;
  position: relative;
  background-color: #333;
  border-radius: 50%;
  cursor: pointer;
}

.form_list_image_area li .form_list_image_close div span::before,
.form_list_image_area li .form_list_image_close div span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  margin: -8% 0 0 -25%;
  background: #FFF;
}

.form_list_image_area li .form_list_image_close div span::before {
  transform: rotate(-45deg);
}

.form_list_image_area li .form_list_image_close div span::after {
  transform: rotate(45deg);
}

.form_agree_check {
  position: relative;
  padding: 0 0 0 2rem;
  cursor: pointer;
}

@media (max-width: 480px) {
  .form_agree_check {
    display: inline-block;
    line-height: 1.6;
  }
}

.form_agree_check::before {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #FFF;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  border-radius: 3px;
}

.form_agree_check::after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 6px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #1FAEA9;
  border-bottom: 2px solid #1FAEA9;
  opacity: 0;
  transition: all .2s ease-out;
  transform: rotate(45deg);
  z-index: 1;
}

input[type=checkbox]:checked + .form_agree_check::after {
  opacity: 1;
}

/*---------------------------------------------------- 確認 --*/
.form_check_list {
  clear: both;
  margin-bottom: 3.75rem;
  padding-top: 5rem;
}

@media (max-width: 768px) {
  .form_check_list {
    padding-top: 2.5rem;
  }
}

.form_check_list li {
  border-bottom: 1px solid #DEDEDE;
}

.form_check_list li dl {
  display: flex;
}

@media (max-width: 768px) {
  .form_check_list li dl {
    display: block;
  }
}

.form_check_list li dt {
  width: 100%;
  max-width: 300px;
  font-weight: 700;
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .form_check_list li dt {
    padding: 1.25rem 0 0.75rem;
  }
}

.form_check_list li dd {
  width: 100%;
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .form_check_list li dd {
    padding: 0 0  1.25rem;
  }
}

.form_check_list li dd img {
  display: inline-block;
  margin-right: 1.5rem;
}

.form_check_list li dd img:last-of-type {
  margin-right: 0;
}

@media (max-width: 768px) {
  .form_list_btn_box.btn_check {
    flex-direction: column;
    align-items: center;
  }
}

.form_list_btn_box.btn_check .btn_style_01 {
  order: 2;
}

@media (max-width: 768px) {
  .form_list_btn_box.btn_check .btn_style_01 {
    order: 1;
  }
}

.form_list_btn_box.btn_check .btn_style_back {
  order: 1;
  margin-right: 1rem;
}

@media (max-width: 768px) {
  .form_list_btn_box.btn_check .btn_style_back {
    order: 2;
    margin: 0.75rem 0 0;
  }
}

/*---------------------------------------------------- 完了  --*/
.contact_thanks_text {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding-top: 5rem;
  clear: both;
}

@media (max-width: 768px) {
  .contact_thanks_text {
    padding-top: 4rem;
  }
}

.contact_thanks_text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: 0;
}

.contact_thanks_text p {
  margin-bottom: 1.875rem;
  line-height: 2;
  letter-spacing: 0;
}

.contact_thanks_text p:last-of-type {
  margin-bottom: 0;
}

.contact_thanks_tel {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 720px;
  margin: 0 auto 5rem;
  padding: 2.5rem 0;
  background-color: #F4FAFB;
}

@media (max-width: 768px) {
  .contact_thanks_tel {
    flex-direction: column;
    margin-bottom: 3.75rem;
    padding: 1.25rem 0;
  }
}

.contact_thanks_tel_number {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 0.75rem;
  padding-left: 1.5rem;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .contact_thanks_tel_number {
    margin-bottom: 0.5rem;
  }
}

.contact_thanks_tel_number::before {
  content: '';
  position: relative;
  top: -2px;
  left: -4px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(../image/ico_phone.svg);
  background-size: contain;
  vertical-align: middle;
}

.contact_thanks_tel_meta {
  font-size: 0.75rem;
  letter-spacing: 0;
}
