@charset "UTF-8";
/* -- FORM -- */
input:focus, button:focus, select:focus, textarea:focus, a:focus, div:focus, aside:focus {
  outline: none; }

/*
radio,checkbox
*/
label.radio, label.checkbox {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  margin: 0 12px 0 0;
  padding-left: 29px;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1.8em !important;
  color: #333; }

.radio:hover:after, .checkbox:hover:after {
  border-color: #b5b5b6; }

.radio:after, .checkbox:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 52%;
  left: 5px;
  display: block;
  margin-top: -10px;
  width: 18px;
  height: 18px;
  border: 1px solid #898989;
  content: '';
  background-color: #fff; }

.radio:after {
  border-radius: 50%; }

.radio:before {
  position: absolute;
  top: 52%;
  left: 9px;
  display: block;
  margin-top: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a6343f;
  content: '';
  opacity: 0;
  z-index: 1; }

input[type=radio]:checked + .radio:before {
  opacity: 1; }

.checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 9px;
  display: block;
  margin-top: -9px;
  width: 9px;
  height: 12px;
  border-right: 3px solid #a6343f;
  border-bottom: 3px solid #a6343f;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1; }

input[type=checkbox]:checked + .checkbox:before {
  opacity: 1; }

/*
input
*/
.input {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  background-color: #fff;
  -webkit-transition: background-color 0.35s ease-in-out;
  transition: background-color 0.35s ease-in-out;
  color: #2d2d2d;
  border: 1px #aaaaaa solid; }

input[type=text], input[type=email], input[type=tel] {
  padding: 0.6em;
  font-size: 1.6rem;
  margin: 0 !important;
  border-radius: 6px; }

.input::-webkit-input-placeholder {
  color: #b2b2b2; }

.input::-moz-placeholder {
  color: #b2b2b2; }

.input:-ms-input-placeholder {
  color: #b2b2b2; }

.input::placeholder {
  color: #b2b2b2; }

.input:focus {
  background-color: #feecd2; }

#year, #month, #day {
  text-align: center;
  display: inline-block; }

/*
textarea
*/
.textarea {
  box-sizing: border-box;
  width: 100%;
  height: 200px;
  line-height: 1.75em;
  background-color: #fff;
  -webkit-transition: background-color 0.35s ease-in-out;
  transition: background-color 0.35s ease-in-out;
  font-size: 1.6rem;
  padding: 12px;
  margin: 0 auto;
  padding-bottom: -8px;
  border: 1px #aaaaaa solid;
  border-radius: 6px;
  display: block; }

.textarea::-webkit-input-placeholder {
  color: #b2b2b2; }

.textarea::-moz-placeholder {
  color: #b2b2b2; }

.textarea:-ms-input-placeholder {
  color: #b2b2b2; }

.textarea::placeholder {
  color: #b2b2b2; }

.textarea:focus {
  background-color: #feecd2; }

.select {
  background-color: #fff;
  padding: 6px 10px 10px;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  border: 1px #aaaaaa solid;
  border-radius: 6px;
  margin: 0 0 10px; }
.select option {
  font-weight: 300; }

/*
form
*/
.form {
  width: 100%; }

.form .form-table-inner {
  position: relative; }

.form .form-table-row {
  margin: 0;
  display: flex;
  border-bottom: 1px #b5b5b6 dotted;
  padding: 20px 0;
  align-items: center;
  flex-wrap: wrap; }

.form .form_top_bd {
  border-top: 1px #aaaaaa dotted;
  margin-top: 5vh; }

.form .form-table-th, .form .form-table-td {
  text-align: left;
  vertical-align: middle;
  line-height: 1.8em;
  font-size: 1.6rem;
  margin: 0; }

.form .form-table-th {
  width: 26.5%;
  height: auto;
  vertical-align: middle;
  position: relative; }

.form .form-table-td {
  -webkit-transition: background-color 0.35s ease-in-out;
  transition: background-color 0.35s ease-in-out;
  width: calc(100% - 26.5%);
  flex-wrap: wrap; }

.form .tdCheck {
  background-color: #fff;
  padding: 16px; }

.form .form-table-text {
  position: relative;
  display: inline-block;
  width: 100%;
  color: #231815;
  height: 100%; }

.form .form-table-text .mark {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.2rem;
  font-weight: bold; }

.form .form-button {
  width: 100%;
  text-align: center;
  margin: 10% auto 30%; }

/*
mark
*/
.mark {
  display: inline-block;
  border-radius: 2px;
  padding: 0 5px;
  color: #e71f19; }

.mark.mark-req {
  padding: 0;
  position: absolute;
  top: 0;
  right: 1em;
  color: #e71f19; }

.atn {
  color: #e71f19;
  font-size: 1.6rem;
  text-align: center; }

/*
button
*/
.submit_bt {
  display: block;
  width: 80%;
  max-width: 600px;
  padding: 20px 0;
  margin: 0 auto;
  cursor: pointer; }
.submit_bt:hover {
  opacity: .8; }

.checkPage input {
  margin: 0 8px; }

form .btn_back {
  margin: 0; }

.btn_back {
  float: left;
  font-size: 1.6rem;
  text-align: center;
  display: inline-block;
  width: 30%;
  margin: 4em auto 2em;
  border: none;
  border-radius: 8px;
  padding: 20px 0;
  cursor: pointer;
  background-color: #b5b5b6;
  color: #fff; }

.check .submit_bt {
  float: right;
  width: 30%; }

.thanks .button01 {
  text-align: center;
  margin: 6% auto 20%;
  padding: 1em 0; }

/*
error state
*/
.is-error {
  background-color: #fee95d !important; }

input[type=radio], input[type=checkbox] {
  display: none; }

.form_atn {
  color: #e60020; }

.pri_tit {
  padding: 1em 0 0.5em; }

.privacy_check {
  height: 200px;
  margin: 0 auto;
  padding: 0.5em 1em;
  border: 1px solid #a6a6a6;
  background-color: #fff;
  overflow-y: scroll;
  overflow-x: none;
  text-align: left;
  color: #444; }
.privacy_check dl {
  margin: 1em auto; }

.privacy_check * {
  line-height: normal;
  font-size: 1.3rem !important; }

.agree_check {
  margin-top: 0;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 0.4em; }

.agree_check a {
  text-decoration: underline;
  color: #a6343f; }

label.radio[for^="subject"] {
  display: block; }

#phone, #fax {
  width: 100%;
  max-width: 300px; }

.form-table-td table {
  width: 100%; }

.form-table-td table tr {
  height: 50px; }

.form-table-td table th {
  font-weight: normal;
  padding-right: 1em;
  width: 70px; }

.privacy_check_tit {
  background-color: #727171;
  margin: 5% auto 0; }
.privacy_check_tit p {
  color: #fff;
  font-weight: 500;
  padding: 0.2em 0;
  font-size: 1.6rem;
  text-align: center; }

#contact > p {
  text-align: center;
  margin: 0 0 2em 0; }

#contact > ul {
  width: 500px;
  margin: 0 auto;
  border: 1px #dddddd solid;
  padding: 1em; }

#contact > ul > li {
  color: #000000;
  font-size: 2.6rem;
  font-weight: 700; }

#contact > ul > li > small {
  font-size: 80%;
  font-weight: 400;
  margin: 0 0 0 1em; }

#contact > ul > li:first-child {
  margin: 0 0 16px 0; }

#contact > ul > li > span > img {
  width: 33px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(-10%, -50%); }

#contact > ul > li > span {
  position: relative;
  border-radius: 6px;
  background-color: #aec800;
  color: #ffffff;
  font-weight: 700;
  height: 47px;
  line-height: 47px;
  padding: 0 10px 0 46px;
  margin-right: 0.5em;
  display: inline-block; }

.attention {
  text-align: left !important;
  font-size: 1.6rem;
  line-height: 30px;
  color: #000000;
  font-weight: 400;
  width: 90%;
  margin: 3em auto !important; }

.attention > a {
  text-decoration: underline; }

.attention > span.mark {
  display: inline; }

@media all and (-ms-high-contrast: none) {
  /*-----=====================
   IE hack
  ====================------*/ }
@media screen and (max-width: 1332px) {
  /*-----=====================
   ノートPC
  ====================------*/ }
@media screen and (max-width: 1024px) and (orientation: portrait) {
  /*-----=====================
   Tablet 横
  ====================------*/ }
@media screen and (max-width: 896px) and (orientation: landscape) {
  /*-----=====================
  　mobile　横
  ====================------*/ }
@media (max-width: 567px) {
  .atn {
    font-size: 1.3rem; }

  #contact > p {
    text-align: left;
    margin: 2em 1em;
    font-size: 1.4rem; }

  #contact > ul {
    display: block;
    width: 90%; }

  #contact > ul > li > span {
    width: auto;
    font-size: 6vw;
    height: auto;
    line-height: normal;
    padding: 0 10px; }

  #contact > ul > li {
    font-size: 7vw; }

  #contact > ul > li > span img {
    display: none; }

  #contact > ul > li > small {
    margin: 0; }

  .radio:before {
    top: 11.5px; }

  .textarea, input[type=text], input[type=email], input[type=tel] {
    font-size: 1.4rem; }

  .form {
    width: 95%;
    margin: 0 auto; }

  .form .form-table-th, .form .form-table-td {
    display: block;
    padding-bottom: 0;
    width: 100%;
    font-size: 1.4rem; }

  .form .form-table-td {
    padding-top: 1em; }

  .form .form-table-inner {
    margin-bottom: 0; }

  .form .form_top_bd {
    padding-top: 2vh; }

  .form-table-td table tr {
    display: flex;
    flex-direction: column;
    height: auto; }

  #phone, #fax {
    max-width: inherit; }

  .privacy_check_tit h3 {
    width: 100%;
    font-size: 1.6rem;
    margin-bottom: 1em; }

  .privacy_check_tit p {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    font-size: 1.4rem; }

  .privacy_check {
    margin: 0 auto;
    font-size: 1.3rem;
    padding: 1em; }

  .privacy_check h3 {
    font-size: 1.3rem; }

  .agree_check a {
    text-decoration: underline;
    color: #a6343f; }

  .agree_check label.checkbox {
    padding-left: 38px;
    text-align: left; }

  .agree_check {
    text-align: center; }

  #add1, #add2 {
    width: 100%; }

  form .btn_back, .submit_bt {
    float: none;
    width: 100%;
    font-size: 1.4rem;
    padding: 5%;
    text-align: center; }

  form .btn_back {
    margin: 0 auto 2em;
    max-width: inherit;
    width: 100%; }

  label.radio, label.checkbox {
    padding-left: 29px;
    font-size: 1.4rem; }

  .checkbox:before {
    left: 9px; }

  .radio:after, .checkbox:after {
    left: 5px; }

  .privacy_check * {
    font-size: 1.1rem !important; }

  .check .submit_bt {
    width: 100%; } }
