@charset "utf-8";
footer{
    margin-top: 100px!important;
}

/* 	パンナビ
--------------------------------------------------------- */
#breadcrumb{
    width: 100%;
    margin-bottom: 50px;
	text-align: left;
	overflow: hidden;
	margin: 0 auto 32px auto;
	font-size: 75%;
}
#breadcrumb li{
	float:left;
	margin-right:10px;
}
#breadcrumb li:after{
	content: "＞";
	padding-left: 10px;
}
#breadcrumb li:last-child:after{
	content:none;
}

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

}

/*タイトル
--------------------------------------------------*/
#title {
	background: #D2EDF8;
    color: #051542;
    text-align: center;
    padding: 24px;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

/*テーブル
--------------------------------------------------*/
#sub table {
	margin:15px auto 46px auto;
	border-collapse: collapse;
	width:100%;
}
#sub td {
	padding: 16px;
	border:1px solid #051542;
	vertical-align: middle;
	text-align:left;
	background-color: #fff;
    box-sizing: border-box;
}
#sub th {
	padding: 16px;
	text-align: center;
	border:1px solid #051542;
	vertical-align: middle;
  font-weight:normal;
    background-color: #F4F4F4;
	width: 30%;
		box-sizing: border-box;
}
@media screen and (max-width:1080px){
#sub{
	width:95%;
	margin:0 auto;
}
}
@media only screen and (max-width:768px){
#sub table{
	width:100%;
	margin:15px auto;
}
#sub th,
#sub td{
	width: 100%;
	display: block;
	border-top: none;
    padding: 8px;
}
#sub tr:first-child th{
	border-top: 1px solid #051542;
}
}

/* -----------------------------------------------------------
	お問い合わせ
----------------------------------------------------------- */
 #inquiry h2{
    text-align: center;
    font-size: 2.3rem;
    font-weight: bold;
    color: #051542;
    margin-bottom: 24px;
     line-height: 1.4em;
}
#inquiry h3 {
	color: #051542;
	font-size:1.2rem;
	font-weight: bold;
	margin: 24px 0 24px 0;
	padding: 0px 5px 5px 0 !important;
    border-bottom: 3px #051542 dotted;
}
.list li{
	background-image: url(../images/common/bg_h5.png);
	background-repeat: no-repeat;
	background-position: 4px 0.6em;
	padding: 1px 0 1px 18px;
}
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;
}
input[type="text"],
input[type="email"],
textarea {
  outline: none;
  border: 1px solid #999;
    background-color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
    border-radius:5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    padding:16px;
    margin: 8px;
    box-sizing: border-box;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  box-shadow: 0 0 7px #051542;
  border: 1px solid #051542;
}
.send{
    text-align: center;
    margin-bottom: 50px;
}
input[type="submit"] {
  display       : inline-block;
  font-size     : 1.3rem;
  text-align    : center;
  cursor        : pointer;
  padding       : 20px 56px;
    margin: 46px 0;
    box-sizing: border-box;
  background    : #051542;
  color         : #ffffff;
  line-height   : 1em;
  transition    : .3s;
}
#inquiry .long{
    width: 90%;
}
#inquiry .middle{
    width: 50%;
}
#inquiry .short{
    width: 30%;
}
input[type="checkbox"] {
  display: none;
}
label {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 22px;
  cursor: pointer;
  -webkit-transition: all .2s;
  transition: all .2s;
}
label::before,
label::after {
  position: absolute;
  content: '';
  -webkit-transition: all .2s;
  transition: all .2s;
}
label::before {
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -10px;
  background: #fff;
  border: 2px solid #999;
  border-radius: 3px;
}
label::after {
  opacity: 0;
  top: 50%;
  left: 3px;
  width: 8px;
  height: 4px;
  margin-top: -6px;
  border-left: 2px solid #EA626B;
  border-bottom: 2px solid #EA626B;
  -webkit-transform: rotate(-45deg) scale(.5);
  transform: rotate(-45deg) scale(.5);
}
label:hover::before {
  background: #fff;
}
input[type="checkbox"]:checked + label::before {
  background: #fff;
  border: 1px solid #3498db;
}
input[type="checkbox"]:checked + label::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}
@media screen and (max-width: 812px){
#inquiry .long{
    width: 100%;
}
#inquiry .middle{
    width: 50%;
}
#inquiry .short{
    width: 30%;
}
}