@charset "UTF-8";
/*========================================
Re:vite
Date : 
URL : 
Style : Contact CSS
Filename : contact-form.css
========================================*/

/*========================================
Contents
========================================*/
@media (max-width: 959px) {

}
@media (max-width: 767px) {

}
@media (max-width: 374px) {

}
/*========================================
Form Setting
========================================*/
button, input, select, textarea {
  font-family : inherit;
  cursor: pointer;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"], textarea, select {
  font-size: 1rem;
  border: 2px solid #ccc;
  background-color: #fff;
  cursor: pointer;
}
input:focus:not(.form-btn-submit-off):not(.form-btn-submit), textarea:focus, select:focus {
  background-color: #fafafa;
  border: 1px solid #000;
  box-shadow: 0 0 10px #eee;
}
input[type="text"], input[type="tel"], input[type="number"], input[type="password"] {
  width: 250px;
  margin: 0 auto;
  height: 40px;
  padding: 15px 22px 15px 15px;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 4px;
}
input[type="email"] {
  width: 450px;
  margin: 0 auto;
  height: 40px;
  padding: 15px 22px 15px 15px;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 2px;
}
.form-inner {
  width: 100%;
  max-width: 800px;
  margin: 50px auto 30px;
  border-radius: 10px;
  box-shadow: 0 0 6px #c1c1c1;
  padding: 60px 0;
}
.form-cont {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 0 25px;
  box-sizing: border-box;
}
textarea {
  width: 100%;
  max-width: 450px;
  height: 200px;
  margin: 0 0 0 0;
  padding: 12px 12px;
  box-sizing: border-box;
}
select {
  padding: 15px 30px 15px 23px;
  width: 264px;
  box-sizing: border-box;
  background: url("../images/content/pulldown.png") top 50% right 5% no-repeat, #fff;
  background-size: 10px, 100%;
}
select {
  -webkit-appearance: none;/* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none;	/* ベンダープレフィックス(Firefox用) */
  appearance: none;	/* 標準のスタイルを無効にする */
}
::-ms-expand {	/* select要素のデザインを無効にする（IE用） */
  display: none;
}
label {
  width: 250px;
  text-align: left;
  display: inline-block;
  font-size: 1rem;
  padding-bottom: 10px;
}
.comfirm_type label {
  width: auto;
  padding-bottom: 0;
  font-size: 0.9rem;
}
.lg-label {
  width: 450px;
  text-align: left;
  display: inline-block;
  font-size: 1rem;
}
.radio_ar {
  padding: 16px 0;
}
/*radio01 css*/
.radio01-input {
  display: none;
}
.radio01-parts {
  position: relative;
  display: block;
  padding-left:1em;
  margin: 0 6px 0 10px;
}
.radio01-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: -10px;
  width: 17px;
  height: 17px;
  border: 1px solid #999;
  border-radius: 50%;
}
.radio01-input:checked + .radio01-parts {
  color: #474747;
}
.radio01-input:checked + .radio01-parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: -6px;
  width: 11px;
  height: 11px;
  background: #474747;
  border-radius: 50%;
}
/* submit botton setting */
.contact-form_btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.form-btn-submit {
  width: 40%;
  margin: 0 auto 0 30%;
  padding: 12px 0;
  font-size: 1.4rem;
  color: #1F99B2;
  border: 2px solid #1F99B2;
  border-radius: 50px;
  background: #fff;
  transition: 0.4s;
}
.form-btn-submit:hover, .form-btn-submit:focus {
  color: #fff;
  background: #1F99B2;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s;
}
.form-btn-submit-off {
  width: 40%;
  margin: 0 auto 0 30%;
  padding: 12px 0;
  font-size: 1.4rem;
  color: #ccc;
  border: 1px solid #ccc;
  border-radius: 50px;
  background: #fff;
}
.form-btn-submit-back {
  width: auto;
  margin: 0 10px;
  padding: 12px 0;
  font-size: 1.4rem;
  border: 1px solid #fff;
  position: absolute;
  top: 30px;
  left: 16%;
}
.form-btn-submit-back:hover {
  color: #fff;
  background: #999;
  cursor: pointer;
}
.form-btn_wide, .form-btn_half {
  width: 30%;
}
.form-btn_error {
  background: #ffe8e8!important;
  border: 2px solid #f00!important;
}
.required {
  color: #f00;
  padding-right: 4px;
  padding-top: 6px;
  font-size: 0.875rem;
}
/* chack box setting */
input[type="checkbox"] {
  display: none;
}
.ck-box {
  position: relative;
  display: inline-block;
  padding: 3px 13px 3px 22px;
  cursor: pointer;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.ck-box::before, .ck-box::after {
  position: absolute;
  content: '';
  -webkit-transition: all .2s;
  transition: all .2s;
}
.ck-box::before {
  top: 50%;
  left: 5px;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: #f4f4f4;
  border: 1px solid #787878;
  border-radius: 3px;
}
.ck-box::after {
  opacity: 0;
  top: 50%;
  left: 8px;
  width: 8px;
  height: 4px;
  margin-top: -4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg) scale(.5);
  transform: rotate(-45deg) scale(.5);
}
input[type="checkbox"]:checked + .ck-box::before {
  background: #F4891F;
  border: 1px solid #F4891F;
}
input[type="checkbox"]:checked + .ck-box::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}

/* Chrome */
::-webkit-input-placeholder {
  color: #cdcdcd;
}
/* Firefox */
::-moz-placeholder {
  color: #cdcdcd;
}
/* IE */
:-ms-input-placeholder {
  color: #cdcdcd;
}
/* Edge */
::-ms-input-placeholder {
  color: #cdcdcd;
}
@media (max-width: 767px) {
  .form-inner {
    padding: 50px 0 30px;
  }
  .form-cont {
    padding: 0 16px;
  }
}

/*========================================
ページ別 Contact
========================================*/
#contact {
  padding: 40px 0 90px;
}
.contact-ttl {
  text-align: center;
  margin: 0 0 25px;
  background: #4E73B1;
  padding: 56px 0;
}
.contact-ttl h2 {
  color: #FFF;
  font-size: 2rem;
}
.contact-text {
  text-align: center;
  line-height: 1.5;
}
.progressbar {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 50px;
}
.stepbar {
  width: 100%;
  max-width: 270px;
  margin: 50px auto 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.875rem;
}
.progressbar li {
  position: relative;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  width: 33.333%;
  font-size: 0.875rem;
  color: #999999;
  font-weight: bold;
  counter-increment: steps;
}
.progressbar li:before {
  display: block;
  width: 26px;
  height: 26px;
  margin: 7px auto 20px auto;
  content: '';
  line-height: 26px;
  font-size: 12px;
  text-align: center;
  border-radius: 50%;
  background-color: #F5F5F5;
  content: counter(steps);
}
.progressbar li:after {
  position: absolute;
  z-index: -1;
  top: 18px;
  left: -38%;
  background: radial-gradient(circle farthest-side, #707070, #707070 60%, transparent 60%, transparent);
  background-size: 8px 3px;
  content: '';
  display: inline-block;
  height: 3px;
  width: 110px;
}
.progressbar li.active:after {
  position: absolute;
  z-index: -1;
  top: 18px;
  left: -38%;
  background: radial-gradient(circle farthest-side, #0070BD, #0070BD 60%, transparent 60%, transparent);
  background-size: 8px 3px;
  content: '';
  display: inline-block;
  height: 3px;
  width: 110px;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active,
.progressbar li.complete{
  color: #0070BD;
}
.progressbar li.active:before,
.progressbar li.complete:before {
  background-color: #0070BD;
  color: #FFF;
}
/* .progressbar li.active:after,
.progressbar li.complete:after {
  background-color: #0070BD;
} */
dt.agree_ttl {
  font-size: 1.125rem;
  padding-bottom: 15px;
}
.change_line {
  text-indent: 1em;
}
.indent {
  padding-left: 1.5em;
  text-indent: -1.5em;
  padding-bottom: 5px;
  line-height: 1.8;
}
/* .personal-box {
  position: relative;
  transition: .3s;
  font-size: 1rem;
  overflow: scroll;
  width: 100%;
  max-width: 640px;
  margin: 40px auto 0;
  height: 232px;
  margin-bottom: 30px;
  padding: 15px 30px 30px;
  background-color: #fff;
  border: 1px solid #000;
  line-height: 1.6;
  scrollbar-base-color: #1F99B2;
} */
.personal-info-text {
  box-sizing: border-box;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  height: 200px;
  margin-bottom: 30px;
  padding: 15px 30px 20px;
  border: 1px solid #cccccc;
  line-height: 1.8;
  font-size: 0.875rem;
  overflow: scroll;
}
.privacy-ttl {
  margin-bottom: 25px;
  text-align: center;
}
.privacy-text {
  width: 100%;
  max-width: 610px;
  margin: 0 auto 35px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.personal-box input {
  display: none;
}
/* スクロールの幅の設定 */
.personal-box::-webkit-scrollbar {
  width: 10px;
  height: 0;
}

/* スクロールの背景の設定 */
.personal-box::-webkit-scrollbar-track {
  border-radius: 5px;
}
/* スクロールのつまみ部分の設定 */
.personal-box::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #C0E3EA;
}

.checkbox-wrapper {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 30px;
  text-align: center;
}
.checkbox-wrapper label {
  display: inline-block;
  text-align: center;
}
.checkbox-wrapper input[type="checkbox"][disabled] + label {
  opacity: 0.3;
}
button[type="submit"] {
  padding: 22px;
  color: #FFF;
  background: #F4891F;
  width: 100%;
  max-width: 335px;
  border: 1px solid #F4891F;
  border-radius: 35px;
  margin: 0 auto;
  opacity: 1;
  font-size: 1rem;
  transition: 0.4s all;
  cursor: pointer;
  box-sizing: border-box;
}
button[type="submit"][disabled] {
  padding: 22px;
  color: #F4891F;
  background: #fff;
  width: 100%;
  max-width: 335px;
  border: 1px solid #F4891F;
  border-radius: 35px;
  margin: 0 auto;
  opacity: 0.3;
  font-size: 1rem;
  box-sizing: border-box;
  pointer-events: none;
  transition: 0.4s all;
}
button[type="submit"]:hover {
  opacity: .5;
}
#submit-off .cv-btn {
  background: #FFF;
}
.cv-btn {
  position: relative;
}
.cv-btn::before {
  position: absolute;
  content: "";
  background-image: url(../images/icon/btn-arrow.png);
  background-position: top;
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}
.pd_5 {
  display: block;
  padding-top: 5px;
}
.contact_text {
  font-size: 0.8125rem;
}
.form_text {
  margin-bottom: 45px;
}
.personal-box h2 {
  font-size: 1rem;
}
.doc_tx {
  padding-bottom: 15px;
}
.required-tag {
  position: relative;
}
.required-tag::after {
  content: "必須";
  background-color: #cb4752;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  min-width: 10px;
  padding: 3px 7px;
  margin: 0 0 0 12px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  display: inline-block;
}
.pp-txt {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 35px;
  text-align: left;
}
@media (max-width: 959px){
	.form-inner {
    width: 90%;
    margin: 0 auto;
  }
  .pp-txt {
    width: 90%;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  input[type="text"], input[type="tel"], input[type="number"], input[type="password"] {
    width: 275px;
    margin: 0 auto;
    height: 44px;
    padding: 15px 23px;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 2px;
  }
  input[type="email"] {
    width: 275px;
    margin: 0 auto;
    height: 44px;
    padding: 15px 23px;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 2px;
  }
  .contact-text {
    text-align: left;
    padding-left: 10px;
  }
  .lg-label {
    display: flex;
    width: 285px;
    font-size: 0.875rem;
    line-height: 1.2;
  }
  textarea {
    width: 100%;
    max-width: 275px;
    height: 200px;
    margin: 0 0 0 0;
    padding: 12px 12px;
    box-sizing: border-box;
  }
  .form-inner {
    width: 90%;
    margin: 0 auto 30px;
  }
  .contact {
    padding-bottom: 70px;
  }
  .contact-ttl {
    margin-bottom: 25px;
    padding: 39px 0;
  }
  .contact-ttl h2 {
    font-size: 1.375rem;
  }
  .personal-info-text {
    box-sizing: border-box;
    width: 90%;
    margin: 20px auto 0;
    height: 200px;
    margin-bottom: 30px;
    padding: 15px 20px 20px;
    border: 1px solid #cccccc;
    line-height: 1.8;
    font-size: 0.875rem;
    overflow: scroll;
  }
  .doc_tx {
    font-size: 0.875rem;
  }
	.checkbox-wrapper {
    margin-bottom: 50px;
  }
  #submit-on,
  #submit-off {
    position: relative;
  }
  #submit-on img,
  #submit-off img {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
  }
  button[type="submit"] {
    padding: 20px;
    width: 90%;
    margin: 0 auto;
    font-weight: bold;
  }
  button[type="submit"][disabled] {
    padding: 20px;
    width: 90%;
    margin: 0 auto;
    font-weight: bold;
  }
  button[type="submit"]:hover {
    opacity: .3;
  }
}
@media (max-width: 374px) {
  input[type="text"], input[type="tel"], input[type="number"], input[type="password"] {
    width: 250px;
  }
  input[type="email"] {
    width: 250px;
  }
  .contact-text {
    text-align: left;
    padding-left: 10px;
  }
  .lg-label {
    width: 250px;
  }
  textarea {
    max-width: 250px;
  }
  .progressbar li:after {
    width: 90px;
  }
  .progressbar li.active:after {
    width: 90px;
  }
  .form_text {
    font-size: 0.9rem;
  }
}

/* 確認画面 */
#confirm {
  padding-top: 80px;
}
.confirm_btn {
  display: inline-block;
  background: linear-gradient(to right, #F4891F 0%, #F4A21F 100%);
  width: 480px;
  padding: 24px 0;
  text-align: center;
  border-radius: 45px;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  transition: .4s all;
  opacity: 1;
  outline: none;
}
.confirm_btn:hover {
  opacity: .7;
}
.confirm_bk {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 50px 0 80px;
}
.confirm_bk a {
  font-size: 1.375rem;
  color: #808080;
}
.confirm_bk a:hover {
  cursor: pointer;
}
.contact__ar dl, .confirm__ar dl {
  box-sizing: border-box;
  display: flex;
  padding: 22px 0;
  border-bottom: 1px solid #e2e2e2;
  line-height: 1.6;
}
.contact__ar .confirm-mail_ar {
  padding: 10px 0 22px 0;
}
.confirm__ar dl {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e2e2e2;
}
.confirm__tag {
  box-sizing: border-box;
  width: 240px;
  padding: 30px 80px 30px 0;
  font-weight: bold;
  text-align: right;
}
@media (max-width: 767px) {
  .contact__ar dl {
    display: block;
    padding: 15px;
  }
  .contact__ar dl .contact_type label {
    width: 100%;
    margin-bottom: 15px;
  }
  .confirm__tag {
    padding: 15px 0 15px 10px;
    text-align: left;
    white-space: nowrap;
  }
  .contact-ttl h2 {
    font-size: 1.25rem;
  }
  .contact__ar dl dt {
    margin-bottom: 15px;
    text-align: left;
  }
  .confirm__ar dl {
    display: block;
  }
  .confirm__ar dl dd {
    padding-left: 20px;
  }
  .contact__ar dl dd {
    width: 100%;
  }
  .required::before {
    right: -20px;
  }
  .contact__ar .w-m {
    width: 100%;
  }
  .contact__ar .confirm-mail_ar dt {
    margin: 0;
    padding: 0;
  }
  .contact__ar .confirm-mail_ar {
    padding: 15px;
  }
  .confirm_bk {
    justify-content: space-evenly;
    margin: 30px 0 50px;
  }
  .confirm_bk a {
    font-size: 1.125rem;
  }
  .confirm_btn {
    display: inline-block;
    margin: 0;
    width: 250px;
    border-radius: 40px;
    font-size: 1.125rem;
    padding: 15px 0;
  }
}
@media (max-width: 374px) {
  .confirm__ar dl dd {
    padding-left: 12px;
  }
  .confirm_btn {
    width: 210px;
  }
}

/*========================================
ページ別 thanks.php
========================================*/
#confirm, #thanks {
  padding-top: 100px;
}
.thanks_tx {
  line-height: 2;
  margin-bottom: 30px;
}
.contact_info ul {
  display: flex;
  justify-content: space-evenly;
}
.contact_info {
  border: 1px solid #ababab;
  padding: 30px;
  margin-bottom: 40px;
}
.confirm_bk {
  display: flex;
  align-items: center;
}
.back_btn {
  color: #808080;
  display: block;
  cursor: pointer;
  position: relative;
  font-size: 1.75rem;
  font-weight: 500;
  padding: 20px;
}
.back_btn::before {
  position: absolute;
  content: "";
  top: 26px;
  left: 4px;
  width: 8px;
  height: 8px;
  border: 4px solid;
  border-color: transparent transparent #808080 #808080;
  transform: rotate(45deg);
}
.info_item {
  text-align: center;
}
.info_item h2 {
  color: #0070BD;
  font-size: 1.25rem;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 20px;
}
.tel {
  border: 4px solid #0070BD;
  color: #0070BD;
  background: #fff;
  font-size: 1.75rem;
  width: 335px;
  padding: 26px 0;
  border-radius: 3px;
  text-align: center;
  font-weight: 600;
}
.tel a {
  font-family: 'Open Sans', sans-serif;
  color: #0070BD;
  font-weight: 600;
}
.sales {
  padding: 10px;
  text-align: center;
}
.mail {
  border: 4px solid #0070BD;
  color: #fff;
  background: #0070BD;
  font-size: 1.375rem;
  width: 335px;
  padding: 26px 0;
  border-radius: 3px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}
.mail a {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-weight: 600;
}
.mail a:hover {
  border-bottom: 1px solid #fff;
}
@media (max-width: 959px){
  .contact_info {
    padding: 16px;
  }
  .tel {
    font-size: 1.25rem;
    width: 280px;
    padding: 20px 0;
    border-radius: 3px;
  }
  .sales {
    padding: 10px;
  }
  .mail {
    font-size: 1.25rem;
    width: 280px;
    padding: 20px 0;
    border-radius: 3px;
  }
	
}
@media (max-width: 767px) {
  .contact_info {
    padding: 12px;
  }
  .thanks_tx {
    font-size: 0.875rem;
  }
  .contact_info ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
  .info_item {
    text-align: center;
    margin: 0 auto;
  }
  .confirm_bk {
    display: flex;
    align-items: center;
  }
  .back_btn {
    color: #808080;
    display: block;
    cursor: pointer;
    position: relative;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 20px;
    margin-right: -15px;
  }
  .back_btn::before {
    position: absolute;
    content: "";
    top: 25px;
    left: 8px;
    width: 3px;
    height: 3px;
    border: 4px solid;
    border-color: transparent transparent #808080 #808080;
    transform: rotate(45deg);
  }
}
@media (max-width: 374px) {
  .info_item h2 {
    font-size: 1rem;
  }
  .tel {
    font-size: 1.125rem;
    width: 260px;
    padding: 20px 0;
  }
  .mail {
    font-size: 1.125rem;
    width: 260px;
    padding: 20px 0;
  }
}
