@charset "UTF-8";

/*===============================================
●style.css 画面の横幅が1536px以上
===============================================*/
@media screen and (min-width: 1536px) {
div#mf_wrapper {
        width: 100%;
	max-width:1436px;
	text-align: left;
	margin: 0 auto;
	font-family: 'Helvetica Neue', sans-serif;
	background-color: #FAFAFA;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	padding: 40px 100px;
}

div#mf_header h1 {
	font-size: 28px;
	border-bottom: 2px solid #3261B9;
	color: #333;
	margin-bottom: 10px;
	padding-bottom: 6px;
}

div#mf_header h2 {
	font-size: 16px;
	color: #777;
	font-weight: normal;
	margin-top: 0;
	margin-bottom: 30px;
}

form#mailform {
	padding: 0;
}

table.mailform {
	border-collapse: collapse;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	background-color: #FFF;
}

table.mailform tr {
	border-bottom: 1px solid #E0E0E0;
}

table.mailform tr:last-child {
	border-bottom: none;
}

table.mailform tr th {
	width: 240px;
	text-align: left;
	vertical-align: top;
	font-size: 16px;
	color: #444;
	background-color: #F9F9F9;
	padding: 20px;
}

table.mailform tr td {
	width: calc(100% - 240px);
	font-size: 16px;
	color: #333;
	background-color: #FFFFFF;
	padding: 20px;
}

table.mailform tr th span {
	display: inline-block;
	font-size: 13px;
	background-color: #FF7043;
	color: #FFFFFF;
	padding: 2px 6px;
	margin-right: 8px;
	line-height: 1.4;
	border-radius: 4px;
}

table.mailform tr th span.any {
	background-color: #BDBDBD;
	color: #fff;
}

table.mailform tr th p,
table.mailform td p {
	margin: 0;
	font-size: 14px;
	color: #666;
}

/* 入力欄全体に幅100％指定＋見た目統一 */
table.mailform tr td input[type="text"],
table.mailform tr td input[type="tel"],
table.mailform tr td input[type="age"],
table.mailform tr td input[type="email"],
table.mailform tr td input[type="number"],
table.mailform tr td input[type="password"],
table.mailform tr td input[type="search"],
table.mailform tr td input[type="url"],
table.mailform tr td textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	font-size: 14px;
	border: 1px solid #CCC;
	border-radius: 6px;
}

.input-wide {
	max-width: 400px;
	width: 100%;
}

.input-medium {
	max-width: 250px;
	width: 100%;
}

.input-narrow {
	max-width: 120px;
	width: 100%;
}

.input-email {
	max-width: 600px;
	width: 100%;
}

table.mailform tr td textarea {
	height: 150px;
	resize: vertical;
}

table.mailform td ul,
table.mailform td ol {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}

/* ul_service 見た目調整 */
.ul_service {
	padding: 0;
	margin: 0;
	list-style: none;
}

.ul_service li {
	margin-bottom: 6px;
}

/* ラジオボタンとテキスト整列（必要なら） */
.radio-style {
	margin-right: 6px;
}

.mailform_submit {
	text-align: center;
}

/* 送信ボタン */
input.submit_and_reset {
	background-color: #3261B9;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	margin-top: 30px;
	padding: 14px 40px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	font-family: "Helvetica Neue", sans-serif;
	letter-spacing: 1px;
	display: inline-block;
}

input.submit_and_reset:hover {
	background-color: #244C8D;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

input.submit_and_reset:active {
	transform: translateY(1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
}
/*===============================================
●style.css 画面の横幅が1535px以下1368px以上
===============================================*/
@media screen and (min-width: 1368px) and (max-width: 1535px){
div#mf_wrapper {
        width: 100%;
	text-align: left;
	margin: 0 auto;
	font-family: 'Helvetica Neue', sans-serif;
	background-color: #FAFAFA;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	margin: 0px 20px;
	padding: 40px 100px;
}

div#mf_header h1 {
	font-size: 28px;
	border-bottom: 2px solid #3261B9;
	color: #333;
	margin-bottom: 10px;
	padding-bottom: 6px;
}

div#mf_header h2 {
	font-size: 16px;
	color: #777;
	font-weight: normal;
	margin-top: 0;
	margin-bottom: 30px;
}

form#mailform {
	padding: 0;
}

table.mailform {
	border-collapse: collapse;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	background-color: #FFF;
}

table.mailform tr {
	border-bottom: 1px solid #E0E0E0;
}

table.mailform tr:last-child {
	border-bottom: none;
}

table.mailform tr th {
	width: 240px;
	text-align: left;
	vertical-align: top;
	font-size: 16px;
	color: #444;
	background-color: #F9F9F9;
	padding: 20px;
}

table.mailform tr td {
	width: calc(100% - 240px);
	font-size: 16px;
	color: #333;
	background-color: #FFFFFF;
	padding: 20px;
}

table.mailform tr th span {
	display: inline-block;
	font-size: 13px;
	background-color: #FF7043;
	color: #FFFFFF;
	padding: 2px 6px;
	margin-right: 8px;
	line-height: 1.4;
	border-radius: 4px;
}

table.mailform tr th span.any {
	background-color: #BDBDBD;
	color: #fff;
}

table.mailform tr th p,
table.mailform td p {
	margin: 0;
	font-size: 14px;
	color: #666;
}

/* 入力欄全体に幅100％指定＋見た目統一 */
table.mailform tr td input[type="text"],
table.mailform tr td input[type="tel"],
table.mailform tr td input[type="age"],
table.mailform tr td input[type="email"],
table.mailform tr td input[type="number"],
table.mailform tr td input[type="password"],
table.mailform tr td input[type="search"],
table.mailform tr td input[type="url"],
table.mailform tr td textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	font-size: 14px;
	border: 1px solid #CCC;
	border-radius: 6px;
}

.input-wide {
	max-width: 400px;
	width: 100%;
}

.input-medium {
	max-width: 250px;
	width: 100%;
}

.input-narrow {
	max-width: 120px;
	width: 100%;
}

.input-email {
	max-width: 600px;
	width: 100%;
}

table.mailform tr td textarea {
	height: 150px;
	resize: vertical;
}

table.mailform td ul,
table.mailform td ol {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}

/* ul_service 見た目調整 */
.ul_service {
	padding: 0;
	margin: 0;
	list-style: none;
}

.ul_service li {
	margin-bottom: 6px;
}

/* ラジオボタンとテキスト整列（必要なら） */
.radio-style {
	margin-right: 6px;
}

.mailform_submit {
	text-align: center;
}

/* 送信ボタン */
input.submit_and_reset {
	background-color: #3261B9;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	margin-top: 30px;
	padding: 14px 40px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	font-family: "Helvetica Neue", sans-serif;
	letter-spacing: 1px;
	display: inline-block;
}

input.submit_and_reset:hover {
	background-color: #57A05C;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

input.submit_and_reset:active {
	transform: translateY(1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
}
/*===============================================
●style.css 画面の横幅が1367px以下
===============================================*/
@media screen and (max-width:1367px) {
div#mf_wrapper {
        width: 100%;
	text-align: left;
	margin: 0 auto;
	font-family: 'Helvetica Neue', sans-serif;
	background-color: #FAFAFA;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	padding: 0px 2% 40px 2%;
}

div#mf_header h1 {
	font-size: 28px;
	border-bottom: 2px solid #3261B9;
	color: #333;
	margin-bottom: 10px;
	padding-bottom: 6px;
}

div#mf_header h2 {
	font-size: 16px;
	color: #777;
	font-weight: normal;
	margin-top: 0;
	margin-bottom: 30px;
}

form#mailform {
	padding: 0;
}

table.mailform {
	border-collapse: collapse;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	background-color: #FFF;
}

table.mailform tr {
	border-bottom: 1px solid #E0E0E0;
}

table.mailform tr:last-child {
	border-bottom: none;
}

table.mailform tr th {
	width: 240px;
	text-align: left;
	vertical-align: top;
	font-size: 16px;
	color: #444;
	background-color: #F9F9F9;
	padding: 20px;
}

table.mailform tr td {
	width: calc(100% - 240px);
	font-size: 16px;
	color: #333;
	background-color: #FFFFFF;
	padding: 20px;
}

table.mailform tr th span {
	display: inline-block;
	font-size: 13px;
	background-color: #FF7043;
	color: #FFFFFF;
	padding: 2px 6px;
	margin-right: 8px;
	line-height: 1.4;
	border-radius: 4px;
}

table.mailform tr th span.any {
	background-color: #BDBDBD;
	color: #fff;
}

table.mailform tr th p,
table.mailform td p {
	margin: 0;
	font-size: 14px;
	color: #666;
}

/* 入力欄全体に幅100％指定＋見た目統一 */
table.mailform tr td input[type="text"],
table.mailform tr td input[type="tel"],
table.mailform tr td input[type="age"],
table.mailform tr td input[type="email"],
table.mailform tr td input[type="number"],
table.mailform tr td input[type="password"],
table.mailform tr td input[type="search"],
table.mailform tr td input[type="url"],
table.mailform tr td textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	font-size: 14px;
	border: 1px solid #CCC;
	border-radius: 6px;
}

.input-wide {
	max-width: 400px;
	width: 100%;
}

.input-medium {
	max-width: 250px;
	width: 100%;
}

.input-narrow {
	max-width: 120px;
	width: 100%;
}

.input-email {
	max-width: 600px;
	width: 100%;
}

table.mailform tr td textarea {
	height: 150px;
	resize: vertical;
}

table.mailform td ul,
table.mailform td ol {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}

/* ul_service 見た目調整 */
.ul_service {
	padding: 0;
	margin: 0;
	list-style: none;
}

.ul_service li {
	margin-bottom: 6px;
}

/* ラジオボタンとテキスト整列（必要なら） */
.radio-style {
	margin-right: 6px;
}

.mailform_submit {
	text-align: center;
}

/* 送信ボタン */
input.submit_and_reset {
	background-color: #3261B9;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	margin-top: 30px;
	padding: 14px 40px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	font-family: "Helvetica Neue", sans-serif;
	letter-spacing: 1px;
	display: inline-block;
}

input.submit_and_reset:hover {
	background-color: #57A05C;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

input.submit_and_reset:active {
	transform: translateY(1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
}