@charset "utf-8";

/* ページ内リンクの位置調整 */

.anchor::before {
  content: "";
  display: block;
  height: 60px; /* ヘッダー分など */
  margin-top: -60px;
  visibility: hidden;
}

/* 横書きの小タイトル用 */
h5{
	position:relative;
	font-size:130%;
	margin:calc(20px + 0.5vw) auto ;
}
h5::after{
	content: "";
	position: absolute;
	width: 100px;
	height: 2px;
	background: var(--basecolor);
    bottom:-8px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.alert{
	font-weight:bold;
	color:var(--basecolor);
}

p.contact_tel{
	margin: 45px auto;
	color: white;
	font-weight: bold;
	background: var(--basecolor);
	padding: 14px;
	border-radius: 8px;
	width: 96%;
	max-width:600px;
	font-size:110%;
	text-align:center;
}
p.contact_tel span i{
	letter-spacing:0.3em;
}

.contact_tel span{
	font-size:180%;
	letter-spacing:2px;
}

.red_btn2{
    background: var(--basecolor);
	display:block;
	width: 96%;
	max-width:600px;
    margin: 25px auto;
    font-size: 18px;
    padding: 6px 10px;
    border-radius: 7px;
    text-align:center;
	color:#fff;
}

.inquiry table{
    border-collapse:collapse;
    text-align:center;
    line-height:1.5;
    width:100%;
    margin:10px auto 35px;
	border:1px solid #ccc
}

.inquiry table tr{
	height: 60px;
	border-bottom: 1px solid #ccc;
	border-top:  1px solid #ccc;
}

.inquiry table th{
    width:30%;
    padding:10px;
    font-weight:bold;
    vertical-align:middle;
	border:none;
    background: #f2f1f0;
}

.inquiry table th span{
	display:inline-block;
	font-size:80%;
	margin-left:1em;
	color:#f00;
}

.inquiry table td{
    width:40%;
    padding:10px;
    vertical-align: middle;
    border:none;
	text-align:left;
}

.inquiry input[type=text],
.inquiry input[type=email],
.inquiry textarea{
	width: 100%;
	border:1px solid #999;
	border-radius:3px;
	height: auto;
	min-height:30px;
	background-color:#fff;
}
.inquiry textarea{
	min-height:150px;
}
.inquiry .contact_button{
	background-color:#eee;
	border-radius:4px;
	font-size:110%;
	display:block;
	margin:30px auto;
	
}

.center_block_form{
	max-width:800px;
	margin:0 auto;
}