@charset "UTF-8";
/*全デバイス共通のCSS（スマホ向け）*/
a:link {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.management a:hover {
  color: #81d6e2; }

img:hover {
  cursor: inherit; }

.scroll {
  position: absolute;
  left: 50%;
  bottom: calc(2.5% + 24px);
  width: 1px;
  height: 42px; }
  .scroll span {
    display: inline-block;
    position: absolute;
    font-size: 1.8rem;
    left: -24px;
    top: -24px;
    letter-spacing: .04em; }

.scroll:before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 42px;
  background-color: #000;
  /*opacity: 1;*/
  -webkit-animation: scroll 2s ease 0s infinite normal;
  animation: scroll 2s ease 0s infinite normal; }

@-webkit-keyframes scroll {
  0% {
    top: 12px;
    height: 0; }
  50% {
    top: 12px;
    height: 42px;
    margin-top: 0; }
  100% {
    top: 12px;
    margin-top: 42px;
    height: 0px; } }

@keyframes scroll {
  0% {
    top: 12px;
    height: 0; }
  50% {
    top: 12px;
    height: 42px;
    margin-top: 0; }
  100% {
    top: 12px;
    margin-top: 42px;
    height: 0px; } }
.checkmark {
  padding-left: 30px;
  position: relative; }

.checkmark:before,
.checkmark:after {
  content: "";
  display: block;
  position: absolute; }

.checkmark:before {
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 2px solid #333;
  left: 0;
  top: 2px; }

.checkmark:after {
  border-left: 4px solid #ff0000;
  border-bottom: 4px solid #ff0000;
  width: 16px;
  height: 6px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
  left: 5px;
  top: 1px; }

.contact_wrap {
  border-bottom: 0; }
  .contact_wrap .form_wrap {
    border: solid 1px #cfcfcf;
    border-bottom: 0; }

.form_th,
.form_td {
  padding: 16px; }

.form_th {
  font-weight: bold;
  background: #f4f4f4;
  padding: 12px 16px;
  border-bottom: solid 1px #cfcfcf; }

.form_td {
  border-bottom: solid 1px #cfcfcf;
  font-size: 0;
  line-height: 1; }
  .form_td input {
    width: 100%;
    border: solid 1px #cfcfcf;
    padding: 6px 8px;
    font-size: 1.6rem;
    line-height: 1.6; }
  .form_td textarea {
    width: 100%;
    min-height: 140px;
    border: solid 1px #cfcfcf;
    padding: 6px 8px;
    font-size: 1.6rem;
    line-height: 1.6;
    resize: vertical; }

.form_submit_wrap {
  margin: 16px auto 0 auto; }
  .form_submit_wrap .submit_button {
    display: block;
    width: 70%;
    margin: 0 auto;
    padding: 12px 16px;
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
    position: relative;
    background: #333; }
  .form_submit_wrap .submit_button:before {
    content: "";
    position: absolute;
    top: 20px;
    right: 16px;
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
  .form_submit_wrap .submit_button:hover {
    background: #81d6e2; }

#back_top {
  position: fixed;
  right: 16px;
  bottom: 112px;
  z-index: 101;}
  #back_top a {
    width: 46px;
    height: 46px;
    position: relative;
    display: block;
    background: rgba(57, 162, 176, 0.8); }
  #back_top a:before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 18px;
    left: 13px; }
  #back_top a:hover {
    background: rgba(47, 140, 152, 0.8); }

.scroll_a {
  opacity: 0;
  -webkit-transition: all .5s ease;
          transition: all .5s ease; }

.scroll_show {
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none; }

/* form部分 */
.form_content:not(:last-of-type) {
  margin-bottom: 5%; }

.form_style {
  background: #efefef;
  margin-top: 5%;
  padding: 5%; }

.form_heading {
  margin-bottom: 5px; }
  .form_heading p {
    font-size: 1.5rem;
    font-weight: bold; }
  .form_heading .tel_sub {
    font-size: 1.3rem;
    font-weight: normal; }
  .form_heading .required_icon {
    font-size: 1.4rem;
    font-weight: normal;
    color: #fff;
    background: #ff5400;
    padding: 2px 8px;
    margin-left: 10px; }

.form_entry_place {
  display: block; }
  .form_entry_place .form_place_style {
    width: 100%;
    background: #fff;
    font-size: 1.6rem;
    border: solid 1px #c7c7c7;
    padding: 10px;
    line-height: 1.5;
    box-sizing: border-box; }
  .form_entry_place textarea {
    font-size: 1.6rem;
    min-height: 150px; }

.caution_text {
  font-size: 1.3rem;
  margin-top: 10px; }

.form_submit_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }

.contact_wrap .button_style {
  width: 76%;
  margin: 20px auto 70px auto; }

#textarea {
  display: block; }

/* フォームバリデーション */
.error_required,
.error_name,
.error_kana,
.error_tel,
.error_email {
  display: none;
  color: #ff0000;
  font-size: 1.5rem;
  line-height: 1.2; }

.form_td input.errored,
.form_td textarea.errored {
  border: solid 1px #ff0000; }

.error_required {
  display: none;
  margin-top: 5px; }

.required.errored + .error_required,
.required.errored + .error_name,
.required.errored + .error_required + .error_name,
.required.errored + .error_kana,
.required.errored + .error_required + .error_kana,
.required.errored + .error_tel,
.required.errored + .error_required + .error_tel,
.required.errored + .error_email,
.required.errored + .error_required + .error_email {
  display: block;
  margin-top: 5px; }

.form_submit_wrap.confirmation_wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

.contact_wrap .confirmation_wrap #submit_btn {
  margin-bottom: 0; }
.contact_wrap .confirmation_wrap #return_btn.button_style:before {
  left: -30px; }

.contact_sub_text.contact_fix_text {
  padding-bottom: 20px; }

.tel_main,
.tel_sub {
  display: block;
  width: 100%;
  line-height: 1.2; }

.tel_sub {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: normal;
  margin-top: 4px; }

/* 送信確認画面 */
.submin_sub_text {
  margin: 32px auto 16px auto;
  text-align: center; }

.form_s_wrap table {
  width: 100%;
  border: solid 1px #cfcfcf;
  border-top: 0; }
  .form_s_wrap table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
  .form_s_wrap table td.l_Cel,
  .form_s_wrap table th {
    font-size: 1.6rem;
    font-weight: bold;
    background: #f4f4f4;
    padding: 12px 16px;
    border-top: solid 1px #cfcfcf;
    border-bottom: solid 1px #cfcfcf; }
  .form_s_wrap table th,
  .form_s_wrap table td {
    width: 100%;
    padding: 12px 16px; }
.form_s_wrap .form_submit_wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  .form_s_wrap .form_submit_wrap .form_s_btn.hidden {
    display: none; }
  .form_s_wrap .form_submit_wrap .form_s_btn {
    display: block;
    width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative; }
    .form_s_wrap .form_submit_wrap .form_s_btn input {
      color: #fff;
      font-size: 1.6rem;
      width: 100%;
      background: #333;
      padding: 12px 16px; }
  .form_s_wrap .form_submit_wrap .form_s_btn:not(:last-of-type) {
    margin-bottom: 16px; }
  .form_s_wrap .form_submit_wrap .form_s_btn.return_btn input {
    background: #777; }
  .form_s_wrap .form_submit_wrap .submit_arrow:before,
  .form_s_wrap .form_submit_wrap .retirn_arrow:before {
    content: "";
    position: absolute;
    top: 20px;
    width: 10px;
    height: 10px; }
  .form_s_wrap .form_submit_wrap .submit_arrow:before {
    right: 16px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
  .form_s_wrap .form_submit_wrap .retirn_arrow:before {
    left: 16px;
    border-bottom: solid 2px #fff;
    border-left: solid 2px #fff;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
  .form_s_wrap .form_submit_wrap .form_s_btn:hover input {
    background: #81d6e2;
    -webkit-transition: all .3s;
    transition: all .3s; }

.thanks-contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 300px;
  height: 60vh;
  margin: 32px auto; }
  .thanks-contents h1, .thanks-contents p {
    text-align: center;
    line-height: 1.4;
    margin-bottom: 32px; }

#top .main-contents .container_inner {
  width: 100%; }

.thanks-inner p, .thanks-inner a {
  text-align: center; }
.thanks-inner a {
  background: #333;
  padding: 12px 16px;
  color: #fff;
  display: block;
  line-height: 1.4;
  width: 70%;
  max-width: 280px;
  margin: 12px auto 0 auto; }
.thanks-inner a:hover {
  background: #81d6e2; }

header.sp_fixed{
	position: fixed;
	z-index: 100;
}
header.sp_fixed + main{
	padding-top: 86px;
}

footer.hoken{
	padding-bottom: 99px;
}

footer.hoken.contact_pwrap{
	padding-bottom: 0;
}

.footer_fixed_button{
	width: 100%;
    background: rgba(255,255,255,.8);
	display: block;
	position: fixed;
	z-index: 99;
	padding: 16px;
	bottom:0;
}

.footer_fixed_button a{
	background:#f00;
	border-radius: 12px;
	padding: 10px;
	color:#fff;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
}

.footer_fixed_button a span{
	font-size: 1.3rem;
	display: block;
	line-height: 1.2;
}

@media screen and (max-width: 320px) {
	footer.hoken {
    	padding-bottom: 126px;
	}
	
	footer.hoken.contact_pwrap{
		padding-bottom: 0;
	}
}

/*幅600px〜以上に適用されるCSS（タブレットサイズ以上）*/
@media screen and (min-width: 600px) {
  .form_th {
    border-right: solid 1px #cfcfcf; }

  .form_submit_wrap .submit_button {
    width: 46%;
    max-width: 240px; }

  .form_submit_wrap {
    margin: 24px auto 0 auto; }

  /* form部分 */
  .form_style {
    padding: 40px; }

  .form_content:not(:last-of-type) {
    margin-bottom: 30px; }

  .error_required,
  .error_name,
  .error_kana,
  .error_tel,
  .error_email,
  .required.errored + .error_required,
  .required.errored + .error_tel {
    display: block;
    margin-top: 5px; }

  .submin_sub_text {
    margin: 48px auto 24px auto; }

  .confirmation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    min-height: 1024px; }
    .confirmation footer {
      width: 100%;
      margin-top: auto; }

  .form_s_wrap {
    margin-bottom: 48px; }
    .form_s_wrap .form_submit_wrap {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .form_s_wrap .form_submit_wrap .form_s_btn:not(:last-of-type) {
        margin-bottom: 0; }
      .form_s_wrap .form_submit_wrap .form_s_btn {
        width: 46%;
        max-width: 240px;
        margin: 0; }
      .form_s_wrap .form_submit_wrap .form_s_btn.return_btn {
        margin-right: 16px; }
    .form_s_wrap table {
      border-top: solid 1px #cfcfcf; }
      .form_s_wrap table tr:not(:last-of-type) {
        border-bottom: solid 1px #cfcfcf; }
      .form_s_wrap table td.l_Cel,
      .form_s_wrap table th {
        width: 32%;
        border: none;
        border-right: solid 1px #cfcfcf; }
      .form_s_wrap table td {
        width: 68%; }

  .thanks-contents h1 {
    font-size: 3.2rem; }
  .thanks-contents p {
    font-size: 2rem;
    margin-bottom: 24px; }
  .thanks-contents a {
    line-height: 1.6; } 
	
	footer.hoken{
		padding-bottom: 0;
	}
	
	footer.hoken.contact_pwrap{
		padding-bottom: 0;
	}
	
	.footer_fixed_button{
		display: none;
	}
	
	#back_top{
		bottom:16px;
	}

}
/*幅960px以上に適用されるCSS（PCサイズ以上）*/
@media screen and (min-width: 960px) {
  /* form部分 */
  .form_entry_place .form_place_style.form_place_tel {
    width: 54%; }

  .contact_wrap .button_style {
    width: 86%;
    margin: 40px auto 100px auto; }

  .form_heading {
    margin-bottom: 10px; }
    .form_heading p {
      font-size: 1.6rem; }

  .form_heading.form_tel p {
    display: inline-block; }
  .form_heading.form_tel .tel_sub {
    margin-left: 10px; }

  .form_content:not(:last-of-type) {
    margin-bottom: 40px; }

  .contact_wrap .confirmation_wrap #return_btn {
    margin-top: 20px; }

  .form_s_wrap {
    margin-bottom: 100px; }

  .submin_sub_text {
    font-size: 2rem;
    margin: 100px auto 50px auto; } }
/*幅1180px以上に適用されるCSS（PCサイズ以上）*/
@media screen and (min-width: 1180px) {
  /* form部分 */
  .form_heading p {
    font-size: 1.6rem; }

  .contact_wrap .button_style {
    margin: 60px auto 160px auto; }

  .contact_wrap .confirmation_wrap #submit_btn {
    margin-top: 40px; }
  .contact_wrap .confirmation_wrap #return_btn {
    margin-top: 20px; } }

/*# sourceMappingURL=style.css.map */