<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ----------------------------------------
CSS Document
version: 1.4
Last Update: 2024-02-07
---------------------------------------- */

/* ==================

    メールフォーム

================== */
/* for PC */
#formWrap {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
	padding: 0 0 40px;
    color: #222;
    line-height: 1.25em;
    font-size: 16px;
}
table.form__table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
	border-spacing: 0;
}
table.form__table tbody {
	border: 2px solid white;
}
table.form__table td, table.form__table th {
    border: none;
    padding: 16px;
}
table.form__table th {
	position: relative;
    width: 35%;
    font-weight: 400;
    color: #000;
    text-align: left;
	padding-right: 3em;
}
table.form__table tbody td {
    font-weight: 400;
    color: #000;
	text-align: left;
}
table.form__table tfoot td {
    font-weight: 400;
    color: #000;
	text-align: center;
}
table.form__table th span.require {
	position: absolute;
	right: 6px;
    color: #c1272d;
	text-align: right;
}
table.form__table tbody tr:nth-child(2n-1) th, table.form__table tbody tr:nth-child(2n-1) td {
	background-color: #a4d7ef;
}
table.form__table tbody tr:nth-child(2n) th, table.form__table tbody tr:nth-child(2n) td {
	background-color: #d2ebf7;
}
/* input */
input[type="radio"] {
	position: relative;
	-webkit-appearance: none;
	margin: 0.25em 4px 0.25em 8px;
	padding: 0.5em 0;
	width: 16px;
	height: 16px;
	border: 1px solid #999;
	background-color: white;
	border-radius: 12px;
	vertical-align: middle;
}
input[type="radio"]:checked::after {
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 2px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #000;
}
label.radio-option {
	line-height: 2em;
}
input[type="checkbox"] {
}
input[type="radio"][disabled], input[type="checkbox"][disabled] {
    cursor: not-allowed; /* 禁止カーソル */
}
input[type="radio"][disabled] + label, input[type="checkbox"][disabled] + label {
    cursor: not-allowed; /* 禁止カーソル */
}
select {
    margin: 6px;
    padding: 6px;
    background-color: #eee;
    border: 1px solid #999;
}
input[type="text"], input[type="email"], input[type="tel"], textarea {
	display: inline-block;
    margin: 6px;
    padding: 4px 4px;
	font-size: 16px;
    background: #fff;
    border: 1px solid #999;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus {
    background: #ffc;
}
textarea {
    width: 90%;
    height: 12em;
}
input[type="email"] {
    width: 25em;
}
input[name="氏名"] {
    width: 15em;
}
input[name="会社名"] {
    width: 90%;
}
input[name="郵便番号"] {
    width: 8em;
}
input[name="住所"] {
    width: 90%;
}
/* 同意チェック */
.form__areement-guide {
	display: inline-block;
	padding: 0.75em 0;
	line-height: 1.5em;
}
.form__agreement {
	display: inline-block;
	border: 1px solid #808080;
	padding: 0.75em 1.5em;
	line-height: 1.5em;
	background-color: white;
	vertical-align: middle;
}
.form__agreement input[type="checkbox"]{
	position: relative;
	-webkit-appearance: none;
	margin: 0 14px 0 0;
	padding: 0;
	width: 20px;
	height: 20px;
	border: 1px solid #999;
	background-color: white;
	border-radius: 2px;
	vertical-align: middle;
}
.form__agreement input[type="checkbox"]:checked::after{
	content: "";
	position: absolute;
	display: block;
	width: 20px;
	height: 12px;
	border-left: 4px solid darkgreen;
	border-bottom: 4px solid darkgreen;
	transform: rotate( -45deg ) translate( 4px, 2px );
	z-index: 1;
}
/* 送信ボタン */
.form__submit {
    width: auto;
    text-align: center;
	overflow: hidden;
}
.form__submit input[type="submit"] {
    -webkit-appearance: none;
    position: relative;
    display: block;
    top: 0px;
    margin: 20px auto;
    color: #fff;
	font-size: 28px;
    font-weight: 700;
    line-height: 1em;
    background: linear-gradient( #f78034, #f7a53b );
    padding: 0.75em 3em;
    text-align: center;
	border: none;
    border-radius: 10px;
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, .2);
	transition: all .2s;
}
.form__submit input[type="submit"]:hover {
    background: linear-gradient( #f7811e, #f75d1e );
    cursor: pointer;
}
.form__submit input[type="submit"]:active {
    top: 2px;
	background: linear-gradient( #f7811e, #f75d1e );
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2);
}
.form__submit input[type="submit"]:disabled,
.form__submit input[type="submit"]:disabled:hover {
    background: #999;
}
.form__submit input[type="button"] {
    -webkit-appearance: none;
    position: relative;
    display: block;
    top: 0px;
    margin: 20px auto;
    color: #fff;
	font-size: 18px;
    font-weight: 400;
    line-height: 1em;
    background: linear-gradient( #444, #666 );
    padding: 0.75em 3em;
    text-align: center;
	border: none;
    border-radius: 10px;
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, .2);
	transition: all .2s;
}
.form__submit input[type="button"]:hover {
    background: linear-gradient( #555, #333 );
    cursor: pointer;
}
.form__submit input[type="button"]:active {
    top: 2px;
	background: linear-gradient( #555, #333 );
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2);
}
.form__submit input[type="submit"]:disabled,
.form__submit input[type="submit"]:disabled:hover {
    background: #999;
}

/* for Small-Tablet and SmartPhone */
@media screen and (max-width: 720px) {
    #formWrap {
        width: 86%;
        margin: 0 auto;
		padding: 0 0 30px;
    }
    table.form__table th, table.form__table td {
        width: auto;
        display: block;
    }
    table.form__table th {
    }
    table.form__table th span.require {
		right: 16px;
    }
	table.form__table tbody th {
		padding: 16px 4em 3px 16px;
    }
	table.form__table tbody td {
		padding: 3px 16px 16px 16px;
    }
    input[type="text"], input[type="email"], input[type="tel"], textarea {
        margin: 2px 2%;
        width: 96%;
        padding: 4px;
        font-size: 16px;
        display: block;
    }
    input[type="submit"], input[type="reset"], input[type="button"] {
        display: block;
        width: 100%;
    }
}</pre></body></html>