@charset "UTF-8";
/* ===================================================================
Contact From CSS
お問い合わせフォーム用
=================================================================== */
/* ===================================================================
PC
=================================================================== */
/*	残り必須項目表示部分
--------------------------------------------------------------------*/
/*	h
--------------------------------------------------------------------*/
h2 {
  position: relative;
  padding: .6em;
  font-size: 2.4rem;
  font-weight: bold;
  border-top: 3px solid #23ac38;
  border-bottom: 1px dotted #7e7e7e;
}
h2:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #23ac38;
}

/*	form
--------------------------------------------------------------------*/
input[type="text"]:placeholder-shown,
input[type="email"]:placeholder-shown,
input[type="password"]:placeholder-shown,
input[type="tel"]:placeholder-shown,
select:placeholder-shown,
textarea:placeholder-shown {
  color: #777;
}
input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #777;
}
input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
select:-moz-placeholder,
textarea:-moz-placeholder {
  color: #777;
  opacity: 1;
}
input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #777;
  opacity: 1;
}
input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #777;
}

/* ----- form background color start ----- */
.form_required {
  background: #fddcdc;
}

.form_any {
  background: #e1f3f6;
}

/* ----- form background color end ----- */
/* ----- form password start ----- */
.pwd_input {
  margin-bottom: 1em;
}

.pwd_trigger {
  display: inline-block;
  padding: .6em;
  color: white;
  border: 1px solid #fb8720;
  /* hover時ズレ対策　*/
  border-radius: 4px;
  background: #fb8720;
  cursor: pointer;
}
.pwd_trigger:hover {
  color: #fb8720;
  border: 1px solid #fb8720;
  background: white;
}

/* ----- form password end ----- */
/* ----- form select start ----- */
.prt_select {
  position: relative;
}
.prt_select:after {
  content: '\f078';
  position: absolute;
  top: 0;
  right: 10px;
  display: flex;
  align-items: center;
  height: 100%;
  font-family: 'FontAwesome';
  font-size: 1.6rem;
  color: #333;
  pointer-events: none;
}

.prt_select_multi option {
  padding: 10px 0;
}

/* ----- form select end ----- */
/* ----- form checkbox start ----- */
.prt_checkbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.prt_checkbox label:not(:nth-of-type(-n+3)) {
  padding-top: 25px;
}
.prt_checkbox span:before {
  vertical-align: middle;
}
.prt_checkbox .msg_required {
  position: absolute;
  left: 0;
}

/* ----- form checkbox end ----- */
/* ----- form radio start ----- */
.prt_radio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.prt_radio input[type="radio"] {
  display: none;
}
.prt_radio input[type="radio"]:checked + .prt_on:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 10px;
  height: 10px;
  margin: auto;
  background: #23ac38;
  border-radius: 50px;
}
.prt_radio label {
  width: 33.3%;
}
.prt_radio .prt_on {
  position: relative;
  padding-left: 1.8em;
}
.prt_radio .prt_on:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  border-radius: 50px;
  border: 1px solid #bababa;
}

/* ----- form radio end ----- */
/* ----- form button start ----- */
.btn_submit {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 50px;
  font-size: 1.6rem;
  color: white;
  border-radius: 50px;
  border: 1px solid #ffa210;
  background: #ffa210;
  box-shadow: inset 1px 1px 0 white, inset 1px -1px 0 white, inset -1px 1px 0 white, inset -1px -1px 0 white, 0 3px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.btn_submit:hover {
  text-decoration: none;
  color: #ffa210;
  border: 1px solid #ffa210;
  background: white;
}
.btn_submit:after {
  content: '\f105';
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
  font-family: 'FontAwesome';
  font-size: 2.4rem;
  opacity: .8;
}

/* ----- form button end ----- */
/* ----- form 必須or任意 icon start ----- */
.ico_or {
  display: inline-block;
  padding: 0 .8em;
  font-size: 1.2rem;
  color: white;
  border-radius: 3px;
}

.required {
  background: #ff657e;
}

.any {
  background: #b8b8b8;
}

/* ----- form 必須or任意 icon end ----- */
/* ----- form error message start ----- */
.msg_required {
  width: 100%;
  margin-top: .2em;
  background: white;
}
.msg_required:before {
  content: none !important;
}

/* ----- form error message end ----- */
/*	header
--------------------------------------------------------------------*/
#header {
  border-bottom: none;
}

.h_right {
  width: auto;
}

/*	footer
--------------------------------------------------------------------*/
.f_logo {
  margin-bottom: 0;
}

/*	sec_frm_intro
--------------------------------------------------------------------*/
.sec_frm_intro {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
}
.sec_frm_intro h2 {
  margin-bottom: 40px;
}
.sec_frm_intro p {
  text-align: center;
}
.sec_frm_intro .nav_step {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 690px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 2em;
}
.sec_frm_intro .nav_step:before {
  content: '';
  position: absolute;
  top: 18%;
  right: 0;
  left: 0;
  width: 80%;
  height: 1px;
  margin: auto;
  background: #ccc;
  z-index: -1;
}
.sec_frm_intro .nav_step li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 130px;
  width: 100%;
  counter-increment: section;
}
.sec_frm_intro .nav_step li:before {
  content: counter(section);
  display: flex;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: .4em;
  font-size: 2.4rem;
  color: white;
  background: #ccc;
  border-radius: 50px;
}
.sec_frm_intro .nav_step .current:before {
  background: #23ac38;
}
.sec_frm_intro .btn_frm_intro {
  display: flex;
  justify-content: space-between;
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 1em;
}
.sec_frm_intro .btn_frm_intro li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 60px;
  font-size: 1.6rem;
  color: white;
  border-radius: 50px;
  border: 1px solid #ccc;
  background: #ccc;
  box-shadow: inset 1px 1px 0 white, inset 1px -1px 0 white, inset -1px 1px 0 white, inset -1px -1px 0 white, 0 3px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.sec_frm_intro .btn_frm_intro li:hover {
  text-decoration: none;
  border: 1px solid #23ac38;
  background: #23ac38;
}
.sec_frm_intro .btn_frm_intro li:after {
  content: '\f105';
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
  font-family: 'FontAwesome';
  font-size: 2.4rem;
  opacity: .8;
}
.sec_frm_intro .btn_frm_intro .current {
  border: 1px solid #23ac38;
  background: #23ac38;
}

.frm_contents {
  background: #f8f8f8;
}
.frm_contents .inner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.frm_contents .inner .current {
  display: block;
  opacity: 1;
  animation-duration: .5s;
  animation-name: fade-in;
}
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
.sec_form {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: none;
  padding: 40px 0;
  opacity: 0;
}
.sec_form form {
  padding: 50px;
  border: 1px solid #ccc;
  background: white;
}
.sec_form form h2 {
  margin-bottom: 0;
}
.sec_form form dl {
  display: flex;
  flex-wrap: wrap;
}
.sec_form form dt {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 35%;
  padding-top: 40px;
  padding-right: 2%;
  padding-bottom: 40px;
  font-size: 1.8rem;
  border-bottom: 1px dotted #ccc;
}
.sec_form form dt:last-of-type {
  border: none;
}
.sec_form form dd {
  width: 65%;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 1.4rem;
  border-bottom: 1px dotted #ccc;
}
.sec_form form dd:last-of-type {
  border: none;
}
.sec_form form ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.sec_form form ul li {
  padding-right: 1em;
}
.sec_form form span {
  display: block;
}
.sec_form form .txt {
  font-size: 1.4rem;
}
.sec_form form .prt_input_txt {
  display: flex;
}
.sec_form form .prt_input_txt > span {
  width: 49%;
}
.sec_form form .prt_input_txt > span:first-child {
  margin-right: 2%;
}
.sec_form.frm_check {
  display: block;
  opacity: 1;
}
.sec_form .cal_ico {
  position: relative;
}
.sec_form .cal_ico:after {
  content: '\f073';
  position: absolute;
  top: 0;
  right: 10px;
  font-family: 'FontAwesome';
  font-size: 2rem;
  color: #23ac38;
}

.sec_ttl {
  padding-bottom: 40px;
}
.sec_ttl h3 {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.sec_ttl h3 .top {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec_ttl h3 .top:before, .sec_ttl h3 .top:after {
  content: '';
  display: block;
  flex-grow: 1;
  height: 1px;
  background: #afafaf;
}
.sec_ttl h3 .top:before {
  margin-right: 10px;
}
.sec_ttl h3 .top:after {
  margin-left: 10px;
}
.sec_ttl h3 .btm {
  text-align: center;
}

.sec_frm_consultation .about {
  display: flex;
  justify-content: space-between;
}
.sec_frm_consultation .about dl {
  width: 32.3333333333%;
  border-radius: 4px;
  border-width: 2px;
  border-style: solid;
  background: white;
}
.sec_frm_consultation .about dl + dl {
  margin-left: 1.5%;
}
.sec_frm_consultation .about dt {
  padding: .4em 0;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: white;
}
.sec_frm_consultation .about dd {
  padding: 1em;
  font-size: 1.4rem;
}
.sec_frm_consultation .about ul {
  padding-left: 1.6em;
  list-style: disc;
}
.sec_frm_consultation .about .prt_01 {
  border-color: #ff657e;
}
.sec_frm_consultation .about .prt_01 dt {
  background: #ff657e;
}
.sec_frm_consultation .about .prt_02 {
  border-color: #6586e5;
}
.sec_frm_consultation .about .prt_02 dt {
  background: #6586e5;
}
.sec_frm_consultation .about .prt_03 {
  border-color: #f6b34a;
}
.sec_frm_consultation .about .prt_03 dt {
  background: #f6b34a;
}

.sec_frm_trial .flow {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec_frm_trial .flow dl {
  position: relative;
  width: 32.3333333333%;
  border-radius: 4px;
  border-width: 2px;
  border-style: solid;
  background: white;
}
.sec_frm_trial .flow dl:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
  border: solid transparent;
}
.sec_frm_trial .flow dt {
  padding: .4em 0;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: white;
}
.sec_frm_trial .flow dd {
  padding: 1em;
}
.sec_frm_trial .flow p {
  font-size: 1.4rem;
}
.sec_frm_trial .flow .prt_01 {
  border-color: #ff657e;
}
.sec_frm_trial .flow .prt_01:before {
  top: 0;
  right: -8.3%;
  bottom: 0;
  border-width: 30px 10px;
  border-left-color: #ccc;
}
.sec_frm_trial .flow .prt_01 dt {
  background: #ff657e;
}
.sec_frm_trial .flow .prt_02 {
  margin-left: 1.5%;
  border-color: #6586e5;
}
.sec_frm_trial .flow .prt_02:before {
  top: 0;
  right: -8.3%;
  bottom: 0;
  border-width: 30px 10px;
  border-left-color: #ccc;
}
.sec_frm_trial .flow .prt_02 dt {
  background: #6586e5;
}
.sec_frm_trial .flow .prt_03 {
  margin-left: 1.5%;
  border-color: #f6b34a;
}
.sec_frm_trial .flow .prt_03 dt {
  background: #f6b34a;
}
.sec_frm_trial .flow .prt_04 {
  width: 100%;
  margin-top: 30px;
  border-color: #23ac38;
}
.sec_frm_trial .flow .prt_04:before {
  top: -15%;
  right: 0;
  left: 0;
  border-width: 10px 50px;
  border-top-color: #ccc;
}
.sec_frm_trial .flow .prt_04 dt {
  background: #23ac38;
}
.sec_frm_trial .flow .prt_04 dd {
  display: flex;
  flex-wrap: wrap;
}
.sec_frm_trial .flow .prt_04 dd p {
  width: 70%;
}
.sec_frm_trial .flow .prt_04 .txt {
  display: block;
  font-size: 1.8rem;
  color: #23ac38;
}
.sec_frm_trial .flow .prt_04 .bnr {
  display: flex;
  align-items: center;
  width: 30%;
}
.sec_frm_trial .flow .prt_04 .bnr img {
  border: 1px solid #ccc;
}
.sec_frm_trial .flow .prt_04 .bnr li {
  width: 32.3333333333%;
}
.sec_frm_trial .flow .prt_04 .bnr li + li {
  margin-left: 1.5%;
}
.sec_frm_trial .str_address span {
  margin-bottom: 1em;
}
.sec_frm_trial .post_number,
.sec_frm_trial .pref {
  width: 40%;
}

.frm_contact_check .nav_step {
  padding-bottom: 0;
}
.frm_contact_check .nav_step:before {
  top: 26%;
}
.frm_contact_check .prt_checkbox {
  flex-direction: column;
  align-items: flex-start;
}
.frm_contact_check .prt_checkbox span:before {
  content: '\f14a';
  color: #ffa210;
}
.frm_contact_check .prt_select:after {
  content: none;
}
.frm_contact_check .btn {
  display: flex;
  justify-content: space-between;
}
.frm_contact_check .btn .return {
  border: 1px solid #e12323;
  background: #e12323;
}
.frm_contact_check .btn .return:hover {
  color: #e12323;
  border: 1px solid #e12323;
  background: white;
}
.frm_contact_check .btn .return:before {
  content: '\f104';
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 1em;
  bottom: 0;
  margin: auto;
  font-family: 'FontAwesome';
  font-size: 2.4rem;
  opacity: .8;
}
.frm_contact_check .btn .return:after {
  content: none;
}
.frm_contact_check .btn .send {
  border: 1px solid #23ac38;
  background: #23ac38;
}
.frm_contact_check .btn .send:hover {
  color: #23ac38;
  border: 1px solid #23ac38;
  background: white;
}

.frm_contact_thanks .nav_step {
  padding-bottom: 0;
}
.frm_contact_thanks .nav_step:before {
  top: 26%;
}
.frm_contact_thanks .frm_contents {
  padding: 40px 0;
}
.frm_contact_thanks .sec_txt {
  display: block;
  padding: 50px;
  text-align: center;
  border: 1px solid #ccc;
  background: white;
  opacity: 1;
}
.frm_contact_thanks .sec_txt h3 {
  margin-bottom: .8em;
  font-size: 2.4rem;
  color: #23ac38;
}
.frm_contact_thanks .lnk_top {
  padding-top: 1em;
}

/*	sec_frm_intro
--------------------------------------------------------------------*/
.frm_contact_health_check h2,
.frm_contact_health_check h3 {
  margin-bottom: 40px;
}
.frm_contact_health_check .sec_frm_intro {
  padding-bottom: 25px;
}
.frm_contact_health_check .sec_ttl p {
text-align: center;
}
.frm_contact_health_check .str_address span {
  margin-bottom: 1em;
}
.frm_contact_health_check .str_address .post_number,
.frm_contact_health_check .str_address .pref {
  width: 40%;
}

/* ===================================================================
tablet
=================================================================== */
/* ===================================================================
phone
=================================================================== */
@media screen and (max-width: 640px) {
  body {
    font-size: 1.4rem;
  }

  .btn_submit {
    width: 100%;
  }

  .sec_frm_intro .nav_step {
    padding-right: 10px;
    padding-left: 10px;
  }
  .sec_frm_intro .nav_step:before {
    width: 70%;
  }
  .sec_frm_intro .nav_step li {
    max-width: 30%;
    font-size: 3vw;
  }
  .sec_frm_intro .btn_frm_intro {
    padding-right: 10px;
    padding-left: 10px;
    flex-direction: column;
  }
  .sec_frm_intro .btn_frm_intro li {
    width: 100%;
    font-size: 1.4rem;
  }
  .sec_frm_intro .btn_frm_intro li:first-child {
    margin-bottom: 10px;
  }

  .sec_ttl dd {
    display: none;
  }
  .sec_ttl .top {
    margin-bottom: 1em;
  }
  .sec_ttl .top img {
    width: 70%;
  }
  .sec_ttl .btm img {
    width: 70%;
  }

  .sec_form form {
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 1em;
    padding-bottom: 1em;
    border-right: none;
    border-left: none;
  }
  .sec_form form dl {
    flex-direction: column;
  }
  .sec_form form dt {
    width: 100%;
    padding-top: 1em;
    padding-bottom: 1em;
    border: none;
  }
  .sec_form form dd {
    width: 100%;
    padding-top: 0;
    padding-bottom: 1em;
    border-bottom-style: solid;
  }
  .sec_form form ul {
    flex-direction: column;
  }

  .sec_frm_consultation .about {
    padding-right: 10px;
    padding-left: 10px;
    flex-direction: column;
  }
  .sec_frm_consultation .about dl {
    width: 100%;
  }
  .sec_frm_consultation .about dl + dl {
    margin-left: 0;
    margin-top: 4%;
  }

  .sec_frm_trial .flow {
    padding-right: 10px;
    padding-left: 10px;
    flex-direction: column;
  }
  .sec_frm_trial .flow dl {
    width: 100%;
  }
  .sec_frm_trial .flow dl + dl {
    margin-top: 20px;
  }
  .sec_frm_trial .flow .prt_01,
  .sec_frm_trial .flow .prt_02,
  .sec_frm_trial .flow .prt_03 {
    margin-left: 0;
  }
  .sec_frm_trial .flow .prt_01:before,
  .sec_frm_trial .flow .prt_02:before,
  .sec_frm_trial .flow .prt_03:before {
    top: auto;
    right: 0;
    bottom: -25px;
    left: 0;
    border-width: 10px 50px;
    border-top-color: #ccc;
    border-left-color: transparent;
  }
  .sec_frm_trial .flow .prt_04 {
    margin-top: 20px;
  }
  .sec_frm_trial .flow .prt_04:before {
    content: none;
  }
  .sec_frm_trial .flow .prt_04 dd {
    display: none;
  }

  .frm_contact_check .btn {
    flex-direction: column;
  }
  .frm_contact_check .btn p:first-child {
    padding-bottom: 1em;
  }
}
