@charset "UTF-8";
/*
*
* Copyright (c) 2016, AD Line Inc. All rights reserved.
* Data : 2016.04.20
*
*/
/* Googleフォント　Noto Sans,Robot,Open Sans */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700italic,700,900);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800);
/* Googleフォント　Shippori Mincho B1 */
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap");
/* アイコンフォント　Google Material,Font Awesome */
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
/*****************************************************

 SCSS用
 
*****************************************************/
/*****************************************************

 Common - Layout
 
*****************************************************/
html {
  font-size: 10px;
}

body {
  position: relative;
  width: auto;
  height: auto;
  /*min-height: 100vh;*/
  background: url("../images/common/bg_body.jpg") repeat center center;
  background-size: 20%;
  background-size: 380px;
  z-index: 0;
  color: #333333;
  font-size: 1.4rem;
  font-family: 'Shippori Mincho B1', serif;
  /*font-family: 'Noto Sans Japanese','Noto Sans', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif , serif;*/
  font-weight: normal;
  line-height: 1.65;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 896px) {
  body {
    font-size: 1.2rem;
    line-height: 1.65;
    letter-spacing: 0.5px;
    /*background-size: 50%;*/
  }
}
.inner {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.inner.w1240 {
  max-width: 1240px;
}

@media screen and (max-width: 896px) {
  .inner {
    width: 90%;
  }
  .inner.w1240 {
    width: 90%;
  }
}
/*PCでは表示しない*/
@media screen and (min-width: 897px) {
  .pc_none {
    display: none !important;
  }
}
/*SPでは表示しない*/
@media screen and (max-width: 896px) {
  .sp_none {
    display: none !important;
  }
}
/*****************************************************

 Common - Parts
 
*****************************************************/
/*　画像
----------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  margin: 0;
  padding: 0;
}

/*　リンク
----------------------------------------------------*/
a {
  color: #1c81a5;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 770px) {
  a:hover {
    opacity: 1.0;
  }
}
/*　カラム
----------------------------------------------------*/
/* col_box
----------------------------------------*/
@media screen and (min-width: 897px) {
  .col_box {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .col_box .col1 {
    width: 100%;
    height: auto;
    margin: 4% auto 0;
  }
  .col_box .col1:first-child {
    margin-top: 0;
  }
  .col_box .col2 {
    width: 48%;
    height: auto;
    margin: 4% 0 0 4%;
  }
  .col_box .col2:nth-child(2n+1) {
    margin-left: 0;
  }
  .col_box .col2:nth-child(-n+2) {
    margin-top: 0;
  }
  .col_box .col3 {
    width: 31.2%;
    height: auto;
    margin: 4% 0 0 3.2%;
  }
  .col_box .col3:nth-child(3n+1) {
    margin-left: 0;
  }
  .col_box .col3:nth-child(-n+3) {
    margin-top: 0;
  }
  .col_box .col4 {
    width: 23.5%;
    height: auto;
    margin: 4% 0 0 2%;
  }
  .col_box .col4:nth-child(4n+1) {
    margin-left: 0;
  }
  .col_box .col4:nth-child(-n+4) {
    margin-top: 0;
  }
  .col_box .col5 {
    width: 18.4%;
    height: auto;
    margin: 4% 0 0 2%;
  }
  .col_box .col5:nth-child(5n+1) {
    margin-left: 0;
  }
  .col_box .col5:nth-child(-n+5) {
    margin-top: 0;
  }
  .col_box .col6 {
    width: 15.4%;
    height: auto;
    margin: 4% 0 0 1.5%;
  }
  .col_box .col6:nth-child(6n+1) {
    margin-left: 0;
  }
  .col_box .col6:nth-child(-n+6) {
    margin-top: 0;
  }
  .col_box .col7 {
    width: 13%;
    height: auto;
    margin: 4% 0 0 1.5%;
  }
  .col_box .col7:nth-child(7n+1) {
    margin-left: 0;
  }
  .col_box .col7:nth-child(-n+7) {
    margin-top: 0;
  }
}
@media screen and (max-width: 896px) {
  .col_box {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .col_box.sp_reverse {
    flex-direction: column-reverse;
  }
  .col_box .sp_col1 {
    width: 100%;
    height: auto;
    margin: 4% auto 0;
  }
  .col_box .sp_col1:first-child {
    margin-top: 0;
  }
  .col_box .sp_col2 {
    width: 48%;
    height: auto;
    margin: 4% 0 0 4%;
  }
  .col_box .sp_col2:nth-child(2n+1) {
    margin-left: 0;
  }
  .col_box .sp_col2:nth-child(-n+2) {
    margin-top: 0;
  }
  .col_box .sp_col3 {
    width: 31.2%;
    height: auto;
    margin: 4% 0 0 3.2%;
  }
  .col_box .sp_col3:nth-child(3n+1) {
    margin-left: 0;
  }
  .col_box .sp_col3:nth-child(-n+3) {
    margin-top: 0;
  }
  .col_box .sp_col4 {
    width: 23.5%;
    height: auto;
    margin: 4% 0 0 2%;
  }
  .col_box .sp_col4:nth-child(4n+1) {
    margin-left: 0;
  }
  .col_box .sp_col4:nth-child(-n+4) {
    margin-top: 0;
  }
  .col_box .sp_col5 {
    width: 18.4%;
    height: auto;
    margin: 4% 0 0 2%;
  }
  .col_box .sp_col5:nth-child(5n+1) {
    margin-left: 0;
  }
  .col_box .sp_col5:nth-child(-n+5) {
    margin-top: 0;
  }
  .col_box .sp_col6 {
    width: 15.4%;
    height: auto;
    margin: 4% 0 0 1.5%;
  }
  .col_box .sp_col6:nth-child(6n+1) {
    margin-left: 0;
  }
  .col_box .sp_col6:nth-child(-n+6) {
    margin-top: 0;
  }
  .col_box .sp_col7 {
    width: 13%;
    height: auto;
    margin: 4% 0 0 1.5%;
  }
  .col_box .sp_col7:nth-child(7n+1) {
    margin-left: 0;
  }
  .col_box .sp_col7:nth-child(-n+7) {
    margin-top: 0;
  }
}
/*　テーブル
----------------------------------------------------*/
/*　リスト
----------------------------------------------------*/
/* ページトップ
----------------------------------------------------*/
/* トピックパス
----------------------------------------------------*/
/* 見出し
----------------------------------------------------*/
/* section_title
-----------------------------*/
.section_title {
  margin: 80px auto 40px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.section_title span {
  display: inline-block;
  height: 100%;
  background: #000;
  padding: 12px 32px 14px;
  box-sizing: border-box;
}

@media screen and (max-width: 896px) {
  .section_title {
    margin: 40px auto 24px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
  }
  .section_title span {
    display: inline-block;
    height: 100%;
    background: #000;
    padding: 12px 32px 14px;
    box-sizing: border-box;
  }
}
/*****************************************************

 Template - Header
 
*****************************************************/
/* header_contents
----------------------------------------------------*/
.header_contents {
  width: calc(100% - 160px);
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.header_contents .header_title {
  margin: 32px auto 32px 0;
}

@media screen and (max-width: 896px) {
  .header_contents {
    width: calc(100% - 32px);
    height: 64px;
  }
  .header_contents .header_title {
    margin: 16px auto 16px 0;
  }
}
/* title_logo
---------------------------*/
.title_logo {
  width: 296px;
  height: 0;
  padding-bottom: 18.9%;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../images/common/title_logo.svg) no-repeat;
  background-size: contain;
}

@media screen and (max-width: 896px) {
  .title_logo {
    width: 180px;
  }
}
/* nav_menu
---------------------------*/
.nav_menu {
  margin-left: auto;
}
.nav_menu li {
  width: 60px;
  height: 60px;
}
.nav_menu li.mail a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/common/btn_header_mailform.svg") no-repeat;
  background-size: contain;
  transition: 0.3s;
}

@media screen and (max-width: 896px) {
  .nav_menu {
    margin-left: auto;
  }
  .nav_menu li {
    width: 40px;
    height: 40px;
  }
}
/*****************************************************

 Template - Footer
 
*****************************************************/
/* global_footer
----------------------------------------------------*/
.global_footer {
  margin-top: 120px;
  width: 100%;
  color: #fff;
  font-size: 1.4rem;
  background: #333;
  padding: 24px 0;
  box-sizing: border-box;
}
.global_footer.short {
  position: absolute;
  bottom: 0;
}

/*****************************************************

 Page - Home
 
*****************************************************/
/* top_mainvisual
----------------------------------------------------*/
.top_mainvisual {
  width: calc(100% - 160px);
  height: auto;
  margin: 0 auto;
  position: relative;
}
.top_mainvisual .top_maintitle {
  width: 100%;
  height: 100%;
  padding-bottom: 38.4%;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../images/home/img_top_mainvisual.jpg) no-repeat;
  background-size: cover;
  border-radius: 54px;
  border: solid 3px #333333;
  line-height: 0;
}

@media screen and (max-width: 896px) {
  .top_mainvisual {
    width: 90%;
    height: auto;
  }
  .top_mainvisual .top_maintitle {
    width: 100%;
    height: 100%;
    padding-bottom: 54.6%;
    text-indent: -9999px;
    overflow: hidden;
    background: url(../images/home/img_top_mainvisual_sp.jpg) no-repeat;
    background-size: cover;
    border-radius: 27px;
    border: solid 3px #333333;
    line-height: 0;
  }
}
/* top_maintitle
---------------------------*/
/*.top_maintitle{
	color: #fff;
	font-size: 3.6rem;
	position: absolute;
	left: 32px;
	bottom: 32px;
	line-height: 2;
	
	span {
	  background: #1565c0;
	  padding: 5px 16px;
	}
}

@media screen and (max-width:896px) {

	.top_maintitle{
		color: #fff;
		font-size: 1.6rem;
		position: absolute;
		left: 12px;
		bottom: 12px;
		line-height: 2.2;

		span {
		  background: #1565c0;
		  padding: 3px 8px;
		}
	}

}*/
/* introduction
----------------------------------------------------*/
/* intro_title
-----------------------------*/
.intro_title {
  margin: 80px auto;
  color: #333;
  font-size: 2.4rem;
  font-weight: 700;
}

@media screen and (max-width: 896px) {
  .intro_title {
    margin: 40px auto;
    color: #333;
    font-size: 1.6rem;
    font-weight: 700;
  }
}
/* list_service
----------------------------------------------------*/
.list_service li {
  width: auto;
  height: 410px;
}
.list_service li.healthcare {
  display: block;
  padding-bottom: 31.7%;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/home/service_healthcare.png") no-repeat top center;
  background-size: contain;
}
.list_service li.realestate {
  padding-bottom: 31.7%;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/home/service_realestate.png") no-repeat top center;
  background-size: contain;
}
.list_service li.others {
  padding-bottom: 31.7%;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/home/service_others.png") no-repeat top center;
  background-size: contain;
}

@media screen and (max-width: 896px) {
  .list_service {
    justify-content: center;
  }
  .list_service li {
    width: auto;
    height: 410px;
  }
  .list_service li.healthcare {
    display: block;
    padding-bottom: 46%;
    text-indent: -9999px;
    overflow: hidden;
    background: url("../images/home/service_healthcare.png") no-repeat top center;
    background-size: contain;
  }
  .list_service li.realestate {
    padding-bottom: 46%;
    text-indent: -9999px;
    overflow: hidden;
    background: url("../images/home/service_realestate.png") no-repeat top center;
    background-size: contain;
  }
  .list_service li.others {
    padding-bottom: 46%;
    text-indent: -9999px;
    overflow: hidden;
    background: url("../images/home/service_others.png") no-repeat top center;
    background-size: contain;
  }
}
/* company
----------------------------------------------------*/
.company {
  margin-top: 80px;
  display: flex;
  width: 100%;
  background: #1565c0;
  border-top: solid 3px #333;
  border-bottom: solid 3px #333;
}
.company .profile, .company .accessmap {
  position: relative;
  width: 50%;
}

@media screen and (max-width: 896px) {
  .company {
    margin-top: 40px;
    flex-direction: column;
  }
  .company .profile, .company .accessmap {
    width: 100%;
  }
}
/* profile
----------------------------------------------------*/
.profile .inner {
  width: calc(100% - 160px);
  padding: 80px 0;
  box-sizing: border-box;
}
.profile .inner .section_title {
  margin: 0 auto 24px;
}

@media screen and (max-width: 896px) {
  .profile .inner {
    width: calc(100% - 32px);
    padding: 40px 0;
    box-sizing: border-box;
  }
  .profile .inner .section_title {
    margin: 0 auto 24px;
  }
}
/* accessmap
----------------------------------------------------*/
.accessmap {
  overflow: hidden;
}
.accessmap .map_inner {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.accessmap .map_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 896px) {
  .accessmap .map_inner {
    padding-bottom: 75%;
  }
}
/* tbl_type01
----------------------------------------------------*/
.tbl_type01 {
  width: 100%;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
}
.tbl_type01 a {
  color: #fff;
}
.tbl_type01 tr {
  border-bottom: solid 1px #fff;
}
.tbl_type01 tr th, .tbl_type01 tr td {
  padding: 14px 24px;
  box-sizing: border-box;
}
.tbl_type01 th {
  font-weight: 700;
}

@media screen and (max-width: 896px) {
  .tbl_type01 {
    line-height: 1.4;
  }
  .tbl_type01 tr th, .tbl_type01 tr td {
    padding: 14px 24px 14px 0;
    box-sizing: border-box;
  }
  .tbl_type01 th {
    font-size: 1.4rem;
    vertical-align: top;
  }
  .tbl_type01 td {
    font-size: 1.4rem;
  }
}
/* tbl_form
----------------------------------------------------*/
.tbl_form {
  margin-top: 24px;
  width: 100%;
  color: #333;
}
.tbl_form tr {
  border-bottom: solid 1px #78909c;
}
.tbl_form th {
  width: 272px;
  font-size: 1.6rem;
  font-weight: 700;
  vertical-align: top;
  line-height: 2.2;
  padding: 24px 24px;
  box-sizing: border-box;
}
.tbl_form td {
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 24px 24px;
  box-sizing: border-box;
}

@media screen and (max-width: 896px) {
  .tbl_form {
    width: 100%;
    color: #333;
  }
  .tbl_form tr {
    border-bottom: solid 1px #78909c;
  }
  .tbl_form tr th, .tbl_form tr td {
    display: block;
    width: 100%;
  }
  .tbl_form th {
    padding: 16px 16px 0;
    box-sizing: border-box;
  }
  .tbl_form td {
    padding: 0 16px 16px;
    box-sizing: border-box;
  }
}
/* privacypolicy
----------------------------------------------------*/
.privacypolicy {
  position: relative;
  width: 100%;
  height: 320px;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  border: solid 3px #333;
  overflow-y: scroll;
  /*スクロールバー全体*/
  /*スクロールバーの軌道*/
  /*スクロールバーの動く部分*/
}
.privacypolicy::-webkit-scrollbar {
  width: 8px;
}
.privacypolicy::-webkit-scrollbar-track {
  background: #CCCCCC;
}
.privacypolicy::-webkit-scrollbar-thumb {
  background: #004989;
}
.privacypolicy h3 {
  margin: 0 auto 24px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
.privacypolicy h4 {
  margin: 24px auto 24px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
}
.privacypolicy p {
  font-weight: 600;
}

/* フォーム関係リセット
----------------------------------------------------*/
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  appearance: auto;
}

/* フォーム関係装飾
----------------------------------------------------*/
input[type="text"], input[type="tel"], input[type="email"], input[type="date"], textarea, select, input[type="number"] {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 7px 12px;
  border: 1px solid #78909c;
  background: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
input[type="text"].w90, input[type="tel"].w90, input[type="email"].w90, input[type="date"].w90, textarea.w90, select.w90, input[type="number"].w90 {
  width: 90%;
}
input[type="text"].w80, input[type="tel"].w80, input[type="email"].w80, input[type="date"].w80, textarea.w80, select.w80, input[type="number"].w80 {
  width: 80%;
}
input[type="text"].w70, input[type="tel"].w70, input[type="email"].w70, input[type="date"].w70, textarea.w70, select.w70, input[type="number"].w70 {
  width: 70%;
}
input[type="text"].w60, input[type="tel"].w60, input[type="email"].w60, input[type="date"].w60, textarea.w60, select.w60, input[type="number"].w60 {
  width: 60%;
}
input[type="text"].w50, input[type="tel"].w50, input[type="email"].w50, input[type="date"].w50, textarea.w50, select.w50, input[type="number"].w50 {
  width: 50%;
}
input[type="text"].w40, input[type="tel"].w40, input[type="email"].w40, input[type="date"].w40, textarea.w40, select.w40, input[type="number"].w40 {
  width: 40%;
}
input[type="text"].w30, input[type="text"].zip, input[type="tel"].w30, input[type="tel"].zip, input[type="email"].w30, input[type="email"].zip, input[type="date"].w30, input[type="date"].zip, textarea.w30, textarea.zip, select.w30, select.zip, input[type="number"].w30, input[type="number"].zip {
  width: 30%;
}
input[type="text"].w20, input[type="text"].select_y, input[type="text"].select_m, input[type="text"].select_d, input[type="tel"].w20, input[type="tel"].select_y, input[type="tel"].select_m, input[type="tel"].select_d, input[type="email"].w20, input[type="email"].select_y, input[type="email"].select_m, input[type="email"].select_d, input[type="date"].w20, input[type="date"].select_y, input[type="date"].select_m, input[type="date"].select_d, textarea.w20, textarea.select_y, textarea.select_m, textarea.select_d, select.w20, select.select_y, select.select_m, select.select_d, input[type="number"].w20, input[type="number"].select_y, input[type="number"].select_m, input[type="number"].select_d {
  width: 20%;
}
input[type="text"].select_y, input[type="text"].select_m, input[type="text"].select_d, input[type="tel"].select_y, input[type="tel"].select_m, input[type="tel"].select_d, input[type="email"].select_y, input[type="email"].select_m, input[type="email"].select_d, input[type="date"].select_y, input[type="date"].select_m, input[type="date"].select_d, textarea.select_y, textarea.select_m, textarea.select_d, select.select_y, select.select_m, select.select_d, input[type="number"].select_y, input[type="number"].select_m, input[type="number"].select_d {
  width: 20%;
  margin-right: 4px;
}

input[type="text"]:focus, input[type="tel"]:focus, input[type="email"]:focus, textarea:focus {
  box-shadow: 0 0 4px rgba(0, 73, 137, 0.3);
  border: 1px solid #bed8f0;
}

textarea {
  height: 160px;
  min-height: 160px;
  resize: vertical;
}

input[type="text"] {
  width: 60%;
}

input[type="tel"] {
  width: 40%;
}

input[type="email"] {
  width: 80%;
}

@media screen and (max-width: 896px) {
  input[type="text"].w90, input[type="text"].w80, input[type="text"].w70, input[type="text"].w60, input[type="text"].w50, input[type="text"].w40, input[type="text"].w30, input[type="text"].zip, input[type="tel"].w90, input[type="tel"].w80, input[type="tel"].w70, input[type="tel"].w60, input[type="tel"].w50, input[type="tel"].w40, input[type="tel"].w30, input[type="tel"].zip, input[type="email"].w90, input[type="email"].w80, input[type="email"].w70, input[type="email"].w60, input[type="email"].w50, input[type="email"].w40, input[type="email"].w30, input[type="email"].zip, input[type="date"].w90, input[type="date"].w80, input[type="date"].w70, input[type="date"].w60, input[type="date"].w50, input[type="date"].w40, input[type="date"].w30, input[type="date"].zip, textarea.w90, textarea.w80, textarea.w70, textarea.w60, textarea.w50, textarea.w40, textarea.w30, textarea.zip, select.w90, select.w80, select.w70, select.w60, select.w50, select.w40, select.w30, select.zip, input[type="number"].w90, input[type="number"].w80, input[type="number"].w70, input[type="number"].w60, input[type="number"].w50, input[type="number"].w40, input[type="number"].w30, input[type="number"].zip {
    width: 100%;
  }

  input[type="text"] {
    width: 100%;
  }

  input[type="tel"] {
    width: 100%;
  }

  input[type="email"] {
    width: 100%;
  }
}
input[type="radio"] {
  display: none;
}
input[type="radio"] + span {
  position: relative;
  display: inline-block;
  padding: 0 0 0 24px;
  cursor: pointer;
}
input[type="radio"] + span::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
}
input[type="radio"]:checked + span::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 4px;
  content: "";
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #ffb400;
  border-radius: 50%;
}
input[type="radio"]:checked + span::before {
  border: 1px solid #ffb400;
}

.notice {
  margin-top: 16px;
  color: #78909c;
  font-size: 1.4rem;
  font-weight: 700;
}

.submit_btn {
  margin-top: 40px;
}

a.form_to_top,
input[type="submit"],
input[type="button"] {
  text-decoration: none;
  margin: 30px auto 0;
  display: block;
  text-align: center;
  background: #1565c0;
  font-weight: bold;
  font-size: 1.6rem;
  color: #FFF;
  font-weight: 700;
  padding: 12px 0;
  width: 35%;
  max-width: 204px;
  height: auto;
  transition: .3s;
  position: relative;
  cursor: pointer;
}
a.form_to_top:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  color: #1565c0;
  background: #FFF;
}

@media screen and (max-width: 896px) {
  a.form_to_top,
  input[type="submit"],
  input[type="button"] {
    width: 55%;
    max-width: 204px;
  }
}
#formWrap {
  font-size: 1.4rem;
}
