<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* 資料請求 */

.top_title{
    width: 100%;
    height: 250px;
    margin: auto;
    text-align: center;
	background-image: url("../img/top.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    display: flex;
    justify-content:center;
    align-items: center;

}

.top_title h1{
	display:flex;
    justify-content:center;
    align-items: center;
	width:400px;
	height:60px;
	background-color:rgba(255, 255, 255,0.75);
    font-family: 'Sawarabi Mincho';
	font-size:25px;
	letter-spacing: 2px;
	border-left: 5px #ffffff solid;
}

.request_wrap{
	width:1100px;
	margin: auto;
}
.request_img{
	margin:100px auto;
    font-family: 'Sawarabi Mincho';
	text-align: center;
	display: flex;
	width: 800px;
	justify-content: space-between;
	font-size: 22px;
}
.form_wrap{
	width: 900px;
	margin: 50px auto 200px;
}
.attention{
	padding: 0 30px;
}
.attention01{
	font-size: 15px;
	line-height: 2em;
	margin-bottom: 50px;
}
#button{
	text-align: center;
	display: block;
}
.caution{color: #FF0000;}
span.msg{color: #FF0000;}

.form_wrap table{
	width: 100%;
	margin-top: 20px;
	border: 1px solid #758096;
}

.form_wrap th{
	background-color: rgba(117, 128, 150, 0.47);
	margin: 0px;
	border: solid 1px #758096;
	padding: 20px;
	width: 250px;
	vertical-align: top;
}

.form_wrap td{
	border: solid 1px #758096;
	padding: 20px;
}
.form_wrap label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  display: block;
}

.form_wrap label::before,
.form_wrap label::after {
  content: "";
  display: block; 
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.form_wrap label::before {
  background-color: #fff;
  border: 1px solid #758096;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 5px;
}

.form_wrap label::after {
  background-color: #758096;
  border-radius: 50%;
  opacity: 0;
  width: 16px;
  height: 16px;
  left: 7px
}

.form_wrap input:checked + label::after {
  opacity: 1;
}

.visually-hidden {
 position: absolute;
 white-space: nowrap;
 border: 0;
 clip: rect(0 0 0 0);
 clip-path: inset(50%);
 overflow: hidden;
 height: 1px;
 width: 1px;
 margin: -1px;
 padding: 0;
}
.form_wrap input{
	border: solid 1px #758096;	
	padding: 10px;
}
.form_wrap textarea{
	border: solid 1px #758096;	
	padding: 10px;
	width: 100%;
	height: 200px;
}
.form_wrap select {
	appearance:auto;
	border: solid 1px #758096;	
	width: 200px;
	padding: 10px;
}
.email{
	margin-bottom: 10px;
	width: 100%;
}
.submit{
	background-color: rgba(117, 128, 150, 0.47);
	padding: 10px;	
	margin-bottom: 10px;
	width: 300px;
}
.reset{
	padding: 5px;	
	background: #fff;
	width: 300px;
}


/*ここからタブレット対応*/
@media screen and (max-width: 1280px) {

.request_wrap{
	width: 100%;
	margin-top: 80px;
}
.top_title{
    height: 80px;
    margin-bottom:55px;
}

.top_title h1{
    background-color: unset;
	border-left:unset;
}

.form_wrap{
	width: 90%;
}
.attention{padding: 0;}	

.form_wrap table{
	border: none;
}
.form_wrap tr{box-sizing: 0;}
.form_wrap th,.form_wrap td{
	display: block;
	border:none;
	width: 100%;
}
.form_wrap input{
	display: block;
	width: 90%;
}

}

/*ここからスマホ対応*/
@media screen and (max-width: 750px) {

.request_img{
	width: 90%;
	display: block;
}
.request_img img{
	width: 50%;
}
	
}	</pre></body></html>