@charset "UTF-8";


.mail_tit {
	background: #f0dac6;/*背景色*/
	padding: 0.5em;/*文字まわり（上下左右）の余白*/
	font-size: 20px;
	margin-top: 10px;
	margin-bottom: 10px;
	letter-spacing: 2px;
	text-align: center;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
}


input[type="submit"],
input[type="text"],
input[type="text2"],
input[type="email"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}

input[type="text"],
input[type="email"],
textarea {
  background: #f8f8f8;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 90%;
  transition: 0.8s;
  border-radius: 0;
}

input[type="text2"]{
	background: #f8f8f8;
	display: block;
	font-size: 16px;
	width: 45%;
	transition: 0.8s;
	border-radius: 0;
	float: left;
	padding-top: 12px;
	padding-right: 15px;
	padding-bottom: 12px;
	padding-left: 15px;
}

input[type="email"]:focus,
textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
 
input[type="text"]:focus,
textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

input[type="text2"]:focus,
textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
 
textarea[name="content"] {
  display: inline-block;
  width: 100%;
  height: 150px;
}
 
input::placeholder,
textarea::placeholder {
  color: #ccc;
}

::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}
 
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
 
:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}




*, *:before, *:after {-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;}
.tbl01 {border-collapse: collapse;width: 100%;margin: 1em auto;}
.tbl01 th,.tbl01 td {padding: 0.5em 5%;border: 1px solid #e1e1e1;vertical-align: top;text-align: left;}
.tbl01 th {background: #f5f5f5;width: 30%;}
.tbl01 td {background: #fff;}
@media only screen and (max-width:480px) {
.tbl01 th,.tbl01 td {display: block;width: auto;border-bottom: none;}
.tbl01 tr:last-child {border-bottom: 1px solid #aaa;}
}



.col-form-label {
  padding-top: calc(.375rem + 1px);
  padding-bottom: calc(.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5
}

.alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb
}

.alert-danger hr {
  border-top-color: #f1b0b7
}

.alert-danger .alert-link {
  color: #491217
}

.col-form-label {
  padding-top: calc(.375rem + 1px);
  padding-bottom: calc(.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5
}

/*
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
  .form-control {
    transition: none
  }
}
*/

.badge {
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
  .badge {
    transition: none
  }
}

.badge-danger {
  color: #fff;
  background-color: #dc3545
}

a.badge-danger:focus, a.badge-danger:hover {
  color: #fff;
  background-color: #bd2130
}

a.badge-danger.focus, a.badge-danger:focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
}



.button_m {
	display       : inline-block;
	border-radius : 5%;          /* 角丸       */
	font-size     : 16pt;        /* 文字サイズ */
	text-align    : center;      /* 文字位置   */
	cursor        : pointer;   /* 余白       */
	background    : #1186c1;     /* 背景色     */
	color         : #fff;     /* 文字色     */
	line-height   : 1em;         /* 1行の高さ  */
	transition    : .3s;         /* なめらか変化 */
	box-shadow    : 6px 6px 3px #666666;  /* 影の設定 */
	border        : 2px solid #000066;    /* 枠の指定 */
	margin-top: 20px;
	margin-right: 10px;
	margin-bottom: 20px;
	margin-left: 10px;
	padding-top: 15px;
	padding-right: 40px;
	padding-bottom: 15px;
	padding-left: 40px;
	letter-spacing: 2px;
}
.button_m:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #fff;     /* 背景色     */
  background    : #9bcae2;     /* 文字色     */
}


.button_m2 {
	display       : inline-block;
	border-radius : 5%;          /* 角丸       */
	font-size     : 12pt;        /* 文字サイズ */
	text-align    : center;      /* 文字位置   */
	cursor        : pointer;   /* 余白       */
	background    : #ccc;     /* 背景色     */
	color         : #333;     /* 文字色     */
	line-height   : 1em;         /* 1行の高さ  */
	transition    : .3s;         /* なめらか変化 */
	border        : 1px solid #f1f1f1;    /* 枠の指定 */
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	letter-spacing: 2px;
	padding: 10px;
	float: left;
}

.button_m3 {
	display       : inline-block;
	border-radius : 5%;          /* 角丸       */
	font-size     : 10pt;        /* 文字サイズ */
	text-align    : center;      /* 文字位置   */
	cursor        : pointer;   /* 余白       */
	background    : #7a7a7a;     /* 背景色     */
	color         : #fff;     /* 文字色     */
	line-height   : 1em;         /* 1行の高さ  */
	transition    : .3s;         /* なめらか変化 */
	border        : 1px solid #f1f1f1;    /* 枠の指定 */
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	letter-spacing: 1px;
	float: left;
	padding: 10px;
}
.button_m3:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #fff;     /* 背景色     */
  background    : #d6dadc;     /* 文字色     */
}

.button_mc1 {
	display       : inline-block;
	border-radius : 5%;          /* 角丸       */
	font-size     : 14pt;        /* 文字サイズ */
	text-align    : center;      /* 文字位置   */
	cursor        : pointer;   /* 余白       */
	background    : #ccc;     /* 背景色     */
	color         : #333;     /* 文字色     */
	line-height   : 1em;         /* 1行の高さ  */
	transition    : .3s;         /* なめらか変化 */
	border        : 1px solid #f1f1f1;    /* 枠の指定 */
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	letter-spacing: 2px;
	padding: 15px;
}

.button_mc1:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #555;     /* 背景色     */
  background    : #f1f1f1;     /* 文字色     */
}

.button_mc2 {
	display       : inline-block;
	border-radius : 5%;          /* 角丸       */
	font-size     : 14pt;        /* 文字サイズ */
	text-align    : center;      /* 文字位置   */
	cursor        : pointer;   /* 余白       */
	background    : #7a7a7a;     /* 背景色     */
	color         : #fff;     /* 文字色     */
	line-height   : 1em;         /* 1行の高さ  */
	transition    : .3s;         /* なめらか変化 */
	border        : 1px solid #f1f1f1;
	letter-spacing: 2px;
	margin: 5px;
	padding-top: 15px;
	padding-right: 30px;
	padding-bottom: 15px;
	padding-left: 30px;
}
.button_mc2:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #fff;     /* 背景色     */
  background    : #d6dadc;     /* 文字色     */
}


@media only screen and (max-width:480px) {
.button_m3 {
	display       : inline-block;
	border-radius : 5%;          /* 角丸       */
	font-size     : 9pt;        /* 文字サイズ */
	text-align    : center;      /* 文字位置   */
	cursor        : pointer;   /* 余白       */
	background    : #7a7a7a;     /* 背景色     */
	color         : #fff;     /* 文字色     */
	line-height   : 1em;         /* 1行の高さ  */
	transition    : .3s;         /* なめらか変化 */
	border        : 1px solid #f1f1f1;    /* 枠の指定 */
	margin-top: 4px;
	margin-right: 4px;
	margin-bottom: 4px;
	margin-left: 4px;
	letter-spacing: 1px;
	float: left;
	padding: 10px;
}


.mail_tit {
	background: #f0dac6;/*背景色*/
	padding: 0.5em;/*文字まわり（上下左右）の余白*/
	font-size: 16px;
	margin-top: 10px;
	margin-bottom: 10px;
	letter-spacing: 2px;
	text-align: center;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
}


}

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

input[type="text2"]{
	background: #f8f8f8;
	display: block;
	font-size: 14px;
	width: 40%;
	transition: 0.8s;
	border-radius: 0;
	float: left;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}	
	

.mail_tit {
	background: #f0dac6;/*背景色*/
	padding: 0.5em;/*文字まわり（上下左右）の余白*/
	font-size: 14px;
	margin-top: 10px;
	margin-bottom: 10px;
	letter-spacing: 2px;
	text-align: center;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
}

.button_m2 {
	display       : inline-block;
	border-radius : 5%;          /* 角丸       */
	font-size     : 10pt;        /* 文字サイズ */
	text-align    : center;      /* 文字位置   */
	cursor        : pointer;   /* 余白       */
	background    : #ccc;     /* 背景色     */
	color         : #333;     /* 文字色     */
	line-height   : 1em;         /* 1行の高さ  */
	transition    : .3s;         /* なめらか変化 */
	border        : 1px solid #f1f1f1;    /* 枠の指定 */
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	letter-spacing: 2px;
	padding: 10px;
	float: left;
}

.button_m3 {
	display       : inline-block;
	border-radius : 5%;          /* 角丸       */
	font-size     : 8pt;        /* 文字サイズ */
	text-align    : center;      /* 文字位置   */
	cursor        : pointer;   /* 余白       */
	background    : #7a7a7a;     /* 背景色     */
	color         : #fff;     /* 文字色     */
	line-height   : 1em;         /* 1行の高さ  */
	transition    : .3s;         /* なめらか変化 */
	border        : 1px solid #f1f1f1;    /* 枠の指定 */
	margin-top: 4px;
	margin-right: 4px;
	margin-bottom: 4px;
	margin-left: 4px;
	letter-spacing: 1px;
	float: left;
	padding: 6px;
}


}	
	