@charset "UTF-8";

/* CSS Document */
/*Theme Name:shutokatsumata
description:Wordpressoriginalテーマ
Version:1.0
author:natsuki
*/
* {
  box-sizing: border-box;
}

body {
  color: #1F5059;
	max-width: 1920px;
	min-width: 375px;
}
.main{
	background-color: #B2CBD3;
}
.contact {
  width: 90%;/*横幅*/
  margin: 0 auto;/*中央寄せ*/
  padding: 80px 0;
	max-width: 1090px;
}
.contact-ttl{
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}
.contact-description{
	font-size: 25px;
	color: #9D9181;
	margin-bottom: 40px;
}
.contact-privacy{
  font-size: 18px;
}
.contact-privacy a{
  font-size: 20px;
  text-decoration: underline;
}

@media(max-width:950px){
	.contact-description{
	font-size: 20px;
}
}
.contact-table {
  width: 100%;
  margin-bottom: 20px;
}
.contact-item,
.contact-body {
  padding: 20px;
  border: 1px solid #9D9181;
}

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

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

}
.form-text {
  width: 90%;
 font-size: 1.6rem;
  padding:10px;
  border-radius: 5px;
  border: 1px solid #9D9181;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.input[required]{
	background: pink;
}
.form-select {
    width: 20%;
    height: 40px;
    padding: 5px;
    border: 1px solid #9D9181;
    border-radius: 5px;
	color: #9D9181;
	font-weight: 600;
	max-width: 200px;
	min-width: 100px;
}
.form-textarea {
  width: 90%;
	margin-top: 30px;
  padding: 10px;
  height: 200px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact-submit {
  width: 250px; /* 横幅指定 */
  background-color: #1F5059; /* 背景色 */
  color: #fff; /* 文字色 */
  font-weight: bold; /* 文字の太さ */
  display: block; /* インライン要素をブロック要素に変更 */
  margin: 0 auto; /* 中央寄せ */
  font-size: 16px; /* 文字の大きさ */
  padding: 15px; /* 内側の余白 */
  border-radius: 100vh; /* 角丸指定 */
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}