@charset "UTF-8";

/*レスポンシブ対応　767px以下*/


/*メインイメージ▼*/

.mainImg {
	background-image: url("../../img/contact/contact_main.png");
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	max-width: 100%;
	height: 200px;
	object-fit: contain;
}

.mainImg-title {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%);
	color: #F3F3F3;
	font-size: 1.8rem;
	padding-bottom: 5px;
}

.subtitle {
	display: block;
	color: #fff;
	font-size: 0.8rem;
	border-top: 1px solid #1131C4;
	text-align: center;
	margin-top: 5px;
	padding-top: 5px;
}

/*コンテンツ▼*/

#inner {
	min-width: 360px;
	margin: 50px auto;
	width: 96%;
}

/*メインテーマ▼*/

.tel {
	margin-top: 50px;
	text-align: center;
}

.tel-info {
	font-size: 0.8rem;
	margin-bottom: 20px;
}

.tel-number {
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 2px;
}

.tel-number::before {
	content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
	border-radius: 1px;
  margin-right: 10px;
  background: url("../../img/contact/tel_icon.svg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #5CBEAA; 
	vertical-align: -20%;
}

.tel-number span {
	font-size: 1rem;
}

.form-title {
	margin-top: 70px;
	font-size: 1.1rem;
	font-weight: bold;
	text-align: center
}

.form-lead {
	margin-top: 30px;
	font-size: 0.8rem;
	line-height: 1.5;
	text-align: center;
}

/*お問い合わせフォーム*/

.contact-table {
  width: 100%;
	margin-top: 60px;
  margin-bottom: 20px;
}

.contact-item {
	font-size: 0.9rem;
	padding-left: 40px;
}

.contact-item span {
	font-size: 0.7rem;
	color: #FF2428;
	margin-left: 0.5rem;
}

.contact-item,
.contact-body {
  padding: 10px;
  border: 1px solid #ccc;
}

.contact-item {
  text-align: left; /* テキスト左寄せ */
	vertical-align: middle;
  width: 30%; /* 横幅30%指定（グレーの背景色部分） */
  background-color: #eee; /* グレーの背景色 */
}

.contact-body {
  width: 70%; /* 横幅70%指定（白背景色部分） */
}

.contact-request + .contact-request {
  margin-left: 10px;
}

.contact-request-txt {
  margin-left: 5px;
	font-size: 0.9rem
}

.form-text {
  width: 90%;
  padding: 10px;
  border-radius: 1px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 500px;
}

.form-textarea {
  width: 90%;
  padding: 10px;
  height: 200px;
  border-radius: 1px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact-submit {
  width: 250px; /* 横幅指定 */
  background-color: #5CBEAA; /* 背景色 */
  color: #fff; /* 文字色 */
  font-weight: bold; /* 文字の太さ */
  display: block; /* インライン要素をブロック要素に変更 */
  margin: 50px auto; /* 中央寄せ */
  font-size: 1rem; /* 文字の大きさ */
  padding: 15px; /* 内側の余白 */
  border-radius: 10px; /* 角丸指定 */
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), inset 0px -3px 6px -2px rgba(0, 0, 0, 0.3);
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
	transition: all 0.3s ease 0s;
}

.contact-submit:hover {
	opacity: 0.6;
}