@charset "utf-8";
/*-------- 全下層ページのレイアウトcss --------*/

/* モバイルレイアウト : 480 px およびそれ以下. */

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

h3{
  margin-top: 10%;
  color: #715240;
  font-size: 22px;
}

.contact_form dl dd{
  margin-left: 1em;
}
.contact_form dl dd span{
  color: #6C6C6C;
}

.contact_form dl dt.red,
.contact_form dl dd span.caution{
  color: #f00;
}

.contact_form ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact_form ul li{
	margin: 0 0 1em;
}

/* 同意する */
.contact_form .consent ul{
	padding-left: 1em;
}
.contact_form .consent ul li{
	margin: 0;
}
.contact_form .consent ul li::before{
	content: "※ ";
	margin-left: -1em;
}

.contact_form .consent dd{
	color: #f00;
}

.contact_form dl dd.category{
  display: flex;
  flex-direction: column;
}

/* テキストインプットとテキストエリアの基本装飾 */
input{
  transition: all 0.3s;
}
input:required { background:#FFF;}
textarea:required { background:#FFF;}

input[type="month"],
input[type="date"],
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
	padding: 0.8em;
	outline: none;
	border: 1px solid #CC9D81;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-size: 16px;
	font-family: "Noto Sans JP", serif;
}

input[type="text"],
input[type="tel"],
input[type="email"]{ width:90%;}
textarea { width: 90%; height:100px;}


/* フォーカスした時のスタイルを変更 */
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
	box-shadow: 0 0 5px #8BC782;
	transform: translateZ(0); /*shadowをiOSで表示*/
	border: 2px solid #8BC782;
}

/* 入力確認 */
.sysNextSubmit {
	cursor: pointer;
	margin-top: 8%;
	padding: 10px 30px;
	color: #FFF;
  font-size: 18px;
	background: #B7805F;
	border: none;
	border-radius: 50px;
	font-family: "Kiwi Maru", serif;
}
.sysNextSubmit:hover,
.sysNextSubmit:visited {
	background: #B7805F;
}


/* タブレットレイアウト : 980 px～。モバイルレイアウトからスタイルを継承。 */

@media print, screen and (min-width: 981px) {

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

section{
  max-width: 850px;
}

h3{
  margin-top: 50px;
}

.contact_form dl{
  margin: 1.5em 0;
}

.contact_form dl dd.category{
  display: flex;
  flex-direction: row;
  gap: 1em;
}

/* テキストインプットとテキストエリアの基本装飾 */
input[type="text"],
input[type="tel"],
input[type="email"]{
    width:300px;
}
textarea { width: 500px;}

label.radio{
  display: inline-block;
}

/* recaptchaの表示位置調整 */
.grecaptcha-badge{
  bottom: 100px !important;
}

}