@charset "UTF-8";

/*======================================================
 *  お問い合わせ（contact）
======================================================*/

/*******フォームパンくず*******/
.flow {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}
.flow li {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 205px;
	height: 44px;
	background: #e6e6e6;
	color: #999;
	position: relative;
}
.flow li + li {
	margin-left: 4px;
	padding-left: 15px;
}
.flow li:not(:last-of-type)::before,
.flow li:not(:last-of-type)::after {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	top: 0;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
	border-left: 15px solid #e6e6e6;
	transform: translateX(96%);
	-webkit-transform: translateX(96%);
}
.flow li:not(:last-of-type)::before {
	right: 0;
	z-index: 2;
}
.flow li:not(:last-of-type)::after {
	right: -4px;
	border-left-color: #fff;
	z-index: 1;
}
.flow li.current {
	color: #fff;
	background: #1f518e;
}
.flow li.current::before {
	color: #fff;
	border-left-color: #1f518e;
}



/*注意書き（パンくずの下）*/
.contents .flow + p {
	margin: 40px 0;
}
.contents p .hissu {
	background-color: #a92224;
	color: #fff;
	display: inline-block;
	font-size: 80%;
	width: 3em;
	padding: 0.1em 0;
	text-align: center;
	margin: 0 0.2em;
	vertical-align: 0.1em;
}




/*******フォームテーブル*******/

.contents table {
	margin-bottom: 60px;
	width:100%;
	font-size: 18px;
	line-height: 1.75;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
}
.contents table th {
	border-top: 1px solid;
	color: #1f518e;
	font-weight: bold;
	padding: 20px 15px 20px 20px;
	width: 240px;
	text-align:left;
	position: relative;
	background-clip: padding-box;
}
.contents table tbody:last-of-type tr:last-of-type th {
	border-bottom: 1px solid;
}
.contents table th span {
	display: block;
	position: relative;
}
.contents table th span::after {
	position: absolute;
	content: '必須';
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	background-color: #a92224;
	color: #fff;
	display: block;
	font-size: 77.8%;
	width: 3em;
	padding: 0.4em 0;
	line-height: 1;
	text-align: center;
}
.contents table td {
	border-top: 1px solid #c8c8c8;
	padding: 30px;
}
.contents table tbody:last-of-type tr:last-of-type td {
	border-bottom: 1px solid #c8c8c8;
}
.contents table #name div,
.contents table .company div,
.contents table #add div,
.contents table #mail div {
	margin-bottom: 15px;
}
.contents table #mail div.sp {
	margin-bottom: 0!important;
}
.confirm .contents table #add div { /*確認ページの住所の行間調整*/
	margin-bottom: 0;
}
.contents table p:not(.sp) {
	display: inline-block;
	font-size: 16px;
	margin-left: 0.5em;
}
.contents table #name span {
	width: 2.1em;
	display: inline-block;
    text-align: right;
    margin-right: 10px;
}

/*フォームサイズ*/
.contents table select,
.contents table input[type=text],
.contents table input[type=tel],
.contents table input[type=email],
.contents table input[type=number],
.contents table input[type=url] {
	font-family: "Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Helvetica,sans-serif;
}
.contents table select {
	padding: 0.3em 1.5em 0.3em 0.5em;
	border: 1px solid #9f9f9f;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 3px;
	background: #fffff0 url(../images/common/select_icon.svg) center right 0.6em no-repeat;
}
.contents table input[type=text],
.contents table input[type=tel],
.contents table input[type=email],
.contents table input[type=number],
.contents table input[type=url] ,
.contents table input[type=date] {
	padding: 0.5em;
	background-color: #fffff0;
	border: 1px solid #9f9f9f;
	border-radius: 3px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	line-height: normal;
	height: 46px;
}
.contents table input[type=date] {
	color: #999;
}

input:placeholder {
	color: #999;
}
input::-webkit-input-placeholder {
    /*padding-top: 0.2em;*/
	color: #999;
}
input:-ms-input-placeholder {
	color: #999;
}

.contents table #name input{
	width: 300px;
}
.contents table .company input {
	width: 400px;
}
.contents table #mail input {
	width: 400px;
}
.contents table #add span {
	margin-right: 0.5em;
}
.contents table #add input.input_postal {
	width: 180px;
}
.contents table #add input:not(.input_postal) {
	width: 480px;
}
.contents table #number input {
	width: 200px!important;
}

.contents table input[type=date] {
	width: 220px;
}

.contents table .radio label,
.contents table .check label {
	position: relative;
	cursor: pointer;
	display: block;
}
.contents table .radio label + label,
.contents table .check label + label {
	margin-top: 1em;
}
.contents table .radio label input,
.contents table .check label input {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.contents table .radio label > span,
.contents table .check label > span {
	position: relative;
	padding-left: 40px;
	display: block;
}
.contents table .radio label > span::before,
.contents table .radio label > span::after,
.contents table .check label > span::before,
.contents table .check label > span::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	display: block;
}
.contents table .radio label > span::before,
.contents table .radio label > span::after {
	border-radius: 50%;
	width: 30px;
	height: 30px;
}
.contents table .radio label > span::before,
.contents table .check label > span::before {
	border: 1px solid #c8c8c8;
	z-index: 1;
}
.contents table .check label > span::before {
	width: 28px;
	height: 28px;
}
.contents table .radio label input:checked + span::after {
	background-color: #1f518e;
	border: 7px solid #fff;
	z-index: 0;
}
.contents table .check label input:checked + span::after {
	top: 7px;
	left: 5px;
    width: 17px;
	height: 10px;
    border-bottom: 2px solid #1f518e;
	border-left: 2px solid #1f518e;
	z-index: 2;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}


.contents table textarea {
	background-color: #fffff0;
	border: 1px solid #9f9f9f;
	border-radius: 3px;
	width: 100%;
	height: 120px;
	padding: 0.3em 0.5em;
	vertical-align:bottom;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}
.contents table td ul {
	margin-top: 0.5em;
	line-height: 1.5;
}

/*上場目標*/
.contents table td .jojo_mokuhyo {
	margin-top: 0.8em;
}
.contents table td .jojo_mokuhyo input:nth-of-type(1) {
	margin-right: 0.7em;
	width: 110px;
}
.contents table td .jojo_mokuhyo input:nth-of-type(2) {
	margin: 0 0.7em;
	width: 60px;
}



/*希望日時 */
.contents table td.hopeday dl {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 680px;
}
.contents table td.hopeday dl dt:nth-of-type(n+2),
.contents table td.hopeday dl dd:nth-of-type(n+2) {
	margin-top: 15px;
}
.confirm .contents table td.hopeday dl dt:nth-of-type(n+2),
.confirm .contents table td.hopeday dl dd:nth-of-type(n+2) {
	margin-top: 0;
}
.contents table td.hopeday dl dt {
	width: 90px;
}
.contents table td.hopeday dl dd {
	width: 590px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}
.contents table td.hopeday dl dd select {
	margin-left: 20px;
}

/*Googleカレンダー*/
.gcalendar_box {
	margin-top: 30px;
}


/*******reCAPTCHA*******/
.g-recaptcha {
	margin-bottom: 60px;
}
.g-recaptcha > div {
	margin: 0 auto;
}





/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:500px) {


/*******フォームパンくず*******/
.flow {
	display: none;
}


/*注意書き（パンくずの下）*/
.contents .flow + p {
	margin: 0 0 10vw;
}

/*******フォームテーブル*******/
.contents table{
	border: none;
	margin-bottom: 0;
	font-size: 4.3vw;
}
.confirm .contents table {
	margin-bottom: 5vw;
}
@media screen and (max-width:320px) {
	.contents table {
		font-size: 5vw;
	}	
}
.contents table th,
.contents table td {
	border: none!important;
	display: list-item;
	list-style-type:none;
}

.contents table th {
	border-top: 1px solid!important;
	border-bottom: 1px solid #c8c8c8!important;
	padding: 0.9em 2vw;
	width: 100%;
}
.contents table td {
	padding: 5vw 0 8vw;
}

.contents table #name div,
.contents table .company div,
.contents table #add div,
.contents table #mail div {
	margin-bottom: 3vw;
}

.contents table .radio label {
	display: block;
}
.contents table p {
	font-size: 4vw!important;
}
.contents table p.pc {
	display: none;
}

/*フォームサイズ*/
.contents table input[type=text],
.contents table input[type=tel],
.contents table input[type=email],
.contents table input[type=number],
.contents table input[type=url],
.contents table input[type=date],
.contents table select {
	height: 13vw;
}

.contents table select{
    background-size: 2vw!important;
}

.contents table #name input,
.contents table .company input {
	width: 100%;
}
.contents table #mail input,
.contents table #number input{
	width: 59vw!important;
}
.contents table #add input.input_postal{
	width: 40vw;
}
.contents table #add input:not(.input_postal){
	width: 100%;
}

.contents table .radio label{
	display: block;
}
.contents table .radio label + label,
.contents table .check label + label {
	margin-top: 0.5em;
}
.contents table .radio label > span,
.contents table .check label > span {
	padding-left: 1.7em;
}
.contents table .radio label > span::before,
.contents table .radio label > span::after,
.contents table .check label > span::before,
.contents table .check label > span::after {
	top: 0.15em;
	width: 1.4em;
	height: 1.4em;
}
.contents table .radio label input:checked + span::after {
	border-width: 0.4em;
}
.contents table .check label input:checked + span::after {
	top: 0.5em;
	left: 0.3em;
    width: 0.8em;
	height: 0.4em;
}

.contents table textarea{
	height: 40vw;
}
.contents table #mail .sp,
.contents table td ul {
	font-size: 4vw;
}


/*上場目標*/
.contents table td .jojo_mokuhyo input:nth-of-type(1) {
	margin-right: 0.5em;
	width: 20vw;
}
.contents table td .jojo_mokuhyo input:nth-of-type(2) {
	margin: 0 0.5em;
	width: 15vw;
}

/*希望日時 */
.contents table td.hopeday dl {
	display: block;
	width: 100%;
}
.contents table td.hopeday dl dt,
.contents table td.hopeday dl dd {
	width: 100%;
}
.contents table td.hopeday dl dt {
	margin-bottom: 1vw;
}
.confirm .contents table td.hopeday dl dt {
	margin-bottom: 0;
}
.contents table td.hopeday dl dt:nth-of-type(n+2) {
	margin-top: 4vw;
}
.contents table td.hopeday dl dd {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.contents table td.hopeday dl dd:nth-of-type(n+2) {
	margin-top: 0;
}
.contents table td.hopeday dl dd input[type=date] {
	width: calc(100% - 38vw);
}
.contents table td.hopeday dl dd select {
	margin: 0;
	width: 35vw!important;
}


/*Googleカレンダー*/
.gcalendar_box {
	margin-top: 8vw;
}
.gcalendar_box iframe {
	width: 100%!important;
	height: 70vw!important;
}


/*******reCAPTCHA*******/
.g-recaptcha {
	margin-bottom: 8vw;
	position: relative;
	width: 100vw;
	left: -5vw;
}
	
}