/*
form_common.css
共通入力フォームのCSS
----------------------------------------------------------------------
Project Name : スマートSMEサポーターサイト
Package Name : スタイルシート
----------------------------------------------------------------------
Author       :
Created Date :
Updated Date : 2025/05/29 NDD髙橋 #23378 FBJNDD-40 ステップ追加対応
----------------------------------------------------------------------
/*

/*------------------------------------------------
reset
------------------------------------------------*/

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

sup {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 80%;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}
caption, th{
	text-align:left;
	font-weight:normal;
}

h1, h2, h3, h4, h5, h6 {
	font-size:100%; font-weight:normal;
}
area {
	border:none;
	outline:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset, img{
	border:0;
	vertical-align:bottom;
}

input {
	margin: 0;
	padding: 0;
}
label, select {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

#form-wrapper input,
#form-wrapper textarea,
#form-wrapper select {
	font-size: 16px;
	font-family:"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
#form-wrapper input:placeholder-shown {
	font-size: 14px;
}

input[type=radio] + label,
input[type=checkbox] + label,
select {
	cursor: pointer;
}



/*------------------------------------------------
common
------------------------------------------------*/
html, body {
	height: 100%;
}
body {
	color: #333;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 500;
	font-family:"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	background-color: #FFF;
	position: relative;
	-webkit-text-size-adjust: 100%;
}
a {
	outline: none;
	text-decoration:none;
}
.clear {
	clear: both;
}
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}

#form-wrapper {
	position: relative;
	background-color: #eee;
	padding-top: 30px;
	padding-bottom: 60px;
}


#form_main {
	width: 870px;
	margin: 0 auto;
	padding: 60px;
	background-color: #fff;
	box-sizing: border-box;
}

#form_main .field span.tit {
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	vertical-align: middle;
}

/* 20250610 NDD伊藤 #23376 FBJNDD-44 スマホ用メニューをPC表示させない設定 Add Start */
.sp-on {
    display: none !important;
}
/* 20250610 NDD伊藤 #23376 FBJNDD-44 スマホ用メニューをPC表示させない設定 Add End */

/* ----------------------------
  画面名（大タイトル）
---------------------------- */

h1 {
	font-size: 42px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 25px;
}


/* ----------------------------
  セクション名（中タイトル）
---------------------------- */
h2 {
	font-size: 20px;
	font-weight: bold;
	color: #FFF;
	padding: 12px 14px;
	margin-bottom: 30px;
	background-color: #4293df;
}


/* ----------------------------
  必須マーク
---------------------------- */

.required {
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	line-height: 1;
	color: #df4242;
	margin-left: 8px;
	margin-top: -4px;
	padding: 2px 2px 1px;
	background-color: #FFF;
	border: 1px solid #df4242;
}


/* ----------------------------
  カテゴリ名（小タイトル）
---------------------------- */

.category {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 30px;
}
.category .num {
	display: inline-block;
	margin-right: 20px;
}


/* ----------------------------
  設問
---------------------------- */

.question_tit {
	font-size: 18px;
	font-weight: bold;
	color: #4293df;
	padding-bottom: 4px;
	margin-bottom: 30px;
	border-bottom: 3px solid #4293df;
}
.question {
	padding-bottom: 20px;
}


/* ----------------------------
  テキスト項目 ベース
---------------------------- */

input[type="text"],
input[type="password"] {
	border: 1px solid #aaa;
	max-width: 100%;
	width: 100%;
	padding: 0.5em;
	font-size: inherit;
	box-sizing: border-box;
}

/* ----------------------------
  テキスト項目（中）
---------------------------- */

input[type="text"].medium {
	width: 300px;
}



/* ----------------------------
  チェックボックス / ラジオボタン ベース
---------------------------- */

input[type=radio] + label,
input[type=checkbox] + label {
	cursor: pointer;
}

.radio,
.checkbox {
	padding-bottom: 0;
	margin-bottom: -15px;
}
form.input .radio,
form.input .checkbox {
	padding-top: 3px;
}

input[type=radio],
input[type=checkbox] {
	display: none;
	margin: 0;
}

.radio label,
.checkbox label {
	position: relative;
	color: #333;
	font-weight: bold;
	padding-left: 27px;
	padding-right: 15px;
	margin-bottom: 15px;
	display: inline-block;
}


/* ----------------------------
  添付ボタン
---------------------------- */

textarea {
	border: 1px solid #aaa;
	width: 100%;
	height: 80px;
	box-sizing: border-box;
}
textarea + .count {
	font-size: 10px;
	color: #aaaaaa;
	font-weight: bold;
	text-align: right;
}



/* ----------------------------
  ラジオボタン
---------------------------- */

.radio input[type=radio] + label::before {
	content: "";
	position: absolute;
	top: 0.05em;
	left: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 18px;
	height: 18px;
	background-color: white;

	border: 1px solid #aaa;
	border-radius: 24px;
}
.radio input[type=radio]:checked + label::after {
	content: "";
	position: absolute;
	top: 0.35em;
	left: 5px;
	width: 0px;
	height: 0px;
	border: 4px solid #4293df;
	border-radius: 12px;
}


/* ----------------------------
  チェックボタン
---------------------------- */

.checkbox input[type=checkbox] + label::before,
.checkbox input[type=checkbox] + label::after {
	content: "";
	position: absolute;
}
.checkbox input[type=checkbox] + label::before {
	border: 1px solid #aaa;
	background-color: #FFF;
	width: 18px;
	height: 18px;
	top: 0;
	left: 0;
}

.checkbox input[type=checkbox]:checked + label::after {
	top: 2px;
	left: 2px;
	width: 13px;
	height: 7px;
	border-left: 4px solid #4293df;
	border-bottom: 4px solid #4293df;
	-webkit-transform: scale(0.7, 0.8) rotate(-45deg);
	transform: scale(0.7, 0.8) rotate(-45deg);
}


/* ----------------------------
  選択リスト ベース
---------------------------- */

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	border: none;
	background-color: #FFF;
	font-size: inherit;
	color: #333;
	line-height: 1em;
	padding: 0.5em;
	padding-right: 20px;
	box-sizing: border-box;
}
/*----- IE -----*/
select::-ms-expand {
	display: none;
}


.pulldown > label {
	display: inline-block;
	background-color: #FFF;
	position: relative;
	border: 1px solid #9F9F9F;
}
.pulldown > label select {
	line-height: 1em;
}
.pulldown > label option {
	background-color: #FFF;
	color: #333;
}
.pulldown > label::after {
	content: "";
	display: block;
	font-size: 0;
	line-height: 1;
	position: absolute;
	top: 5px;
	bottom: 0;
	right: 7px;
	width: 0;
	height: 0;
	margin: auto;
	border: solid transparent;
	border-color: rgba(0,0,0,0);
	border-top-color: #aaa;
	border-width: 4px;
	pointer-events: none;
	transform: scaleY(1.5);
}


/* ----------------------------
  選択リスト（小）
---------------------------- */

select.small {
	width: 62px;
}

/* ----------------------------
  選択リスト（中）
---------------------------- */

select.medium {
	width: 123px;
}


/* ------------------------------------------------
  #header
------------------------------------------------ */
#header {
	background-color: #4293df;
}
#header .inner {
	width: 870px;
	margin: 0 auto;
	padding: 20px 0;
}
#header .inner .logo {
	width: 180px;
	height: 60px;
	background-color: #bbbbbb;
}

/* ------------------------------------------------
  #footer
------------------------------------------------ */
#footer {
	background-color: #000;
}
#footer .inner {
	width: 870px;
	margin: 0 auto;
	padding: 25px 0;
	color: #FFF;
}
#footer .inner .txt {
	font-size: 12px;
	text-align: center;
	margin-bottom: 15px;
}
#footer .inner .copy {
	font-size: 12px;
	text-align: center;
}



/* ------------------------------------------------
  #sec1
------------------------------------------------ */

#sec1 .body {
	padding: 0 40px 20px;
}
#sec1 .fields {
	margin-bottom: 20px;
}
#sec1 .fields:after {
	content: "";
	clear: both;
	display: block;
}
#sec1 .fields .field.title {
	float: left;
	width: 230px;
}
form.input #sec1 .fields .field.title {
	padding-top: 5px;
}
#sec1 .fields .field.input {
	float: right;
	width: 420px;
}


/* ------------------------------------------------
  #sec2
------------------------------------------------ */

#sec2 .body {
	padding: 0 0 20px;
}
#sec2 .body h4 {
	margin-bottom: 0;
}
#sec2 .fields {
	padding: 28px 40px;
	border-bottom: 1px dotted #ddd;
}
#sec2 .fields:last-child {
	border-bottom: none;
}
#sec2 .fields:after {
	content: "";
	clear: both;
	display: block;
}
#sec2 .fields .field.title {
	float: left;
	width: 330px;
}
#sec2 .fields .field.input {
	float: right;
	width: 315px;
}
#sec2 .fields2-1-1-1 .field.input {
	letter-spacing: -0.4em;
}
#sec2 .fields2-1-1-1 .field.input label {
	letter-spacing: normal;
	display: inline-block;
	vertical-align: top;
	width: 50%;
	padding-right: 10px;
	box-sizing: border-box;
}
#sec2 .fields2-1-1-1 .field.input label.other {
	width: 100%;
	padding-right: 0;
}
#sec2 .fields2-1-1-1 .field.input label.other input {
	width: 185px;
	display: inline-block;
	vertical-align: middle;
	margin: -5px 5px;
	margin-top: -10px;
}

#sec2 .fields2-1-2 .field.title {
	float: left;
	width: 315px;
}

#sec2 .fields2-1-3 {
	border-bottom: none;
}
#sec2 .fields2-1-3 + .fields2-1-3 {
	margin-top: -25px;
}
#sec2 .fields2-1-3 .field.title {
	float: left;
	width: 210px;
}
#sec2 .fields2-1-3 .field.input {
	float: right;
	width: 400px;
}
#sec2 .fields2-1-3 .subdivision + .subdivision {
	margin-top: 12px;
}
#sec2 .fields2-1-3 .txt {
	font-weight: bold;
}
#sec2 .fields2-1-3 .txt,
#sec2 .fields2-1-3 .pulldown {
	display: inline-block;
	vertical-align: middle;
}

#sec2 .fields2-2-1 {
	border-bottom: none;
}
#sec2 .fields2-2-1 + .fields2-2-1 {
	margin-top: -35px;
}
#sec2 .fields2-2-1 .field.title {
	float: left;
	width: 210px;
}
#sec2 .fields2-2-1 .field.input {
	float: right;
	width: 400px;
}
#sec2 .fields2-2-1 .txt {
	font-weight: bold;
	display: inline-block;
	margin: 0 3px;
}
#sec2 .fields2-2-1 .txt:first-child {
	margin-left: 0;
}
#sec2 .fields2-2-1 input[type="text"] {
	width: 160px;
	display: inline-block;
}


#sec2 .fields.table {
	padding-left: 0;
	padding-right: 0;
}
#sec2 .fields.table table {
	border: 1px solid #ddd;
	width: 100%;
	box-sizing: border-box;
}

#sec2 .fields.table table th,
#sec2 .fields.table table td {
	font-size: 18px;
	vertical-align: middle;
	padding: 20px;
	padding-right: 10px;
	border: 1px solid #ddd;
	box-sizing: border-box;
}
#sec2 .fields.table table th {
	width: 150px;
	font-weight: bold;
	padding-left: 30px;
	background-color: #ecf4fc;
}
#sec2 .fields.table table td {
	background-color: #FFF;
}

#sec2 .fields.table table .pulldown,
#sec2 .fields.table input[type="text"],
#sec2 .fields.table table .txt {
	display: inline-block;
}
#sec2 .fields.table table .pulldown {
	margin-bottom: 15px;
}
#sec2 .fields.table table .pulldown:last-child {
	margin-bottom: 0;
}
#sec2 .fields.table input[type="text"] {
	width: 123px;
}
#sec2 .fields.table table .txt {
	margin-left: 5px;
	font-weight: bold;
}


#sec2 .fields_oath .field.title {
	float: left;
	width: 630px;
}
#sec2 .fields_oath .field.input {
	float: right;
	width: 20px;
}
#sec2 .law {
	height: 330px;
	border: 1px solid #ddd;
	overflow: auto;
}
#sec2 .law .scroll {
	padding: 25px 40px;
}
#sec2 .law .title {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 25px;
}
#sec2 .law li {
	font-size: 16px;
}
#sec2 .law li + li {
	margin-top: 15px;
}

/* ----------------------------
  （Ｘ）追記項目
---------------------------- */

#sec2 .fields_add .field.title {
	float: left;
	width: 110px;
}
#sec2 .fields_add .field.input {
	float: right;
	width: 560px;
}


/* ------------------------------------------------
  #sec3
------------------------------------------------ */

.list #form_main {
	margin-top: 20px;
}

#sec3 .btns {
	margin-bottom: 55px;
}

#sec3 h2 {
	margin-bottom: 45px;
}

#sec3 .body {
	padding: 0 0 30px;
}

#sec3 .body h4 {
	font-size: 18px;
	font-weight: bold;
	color: #4293df;
	padding-bottom: 4px;
	margin-bottom: 30px;
	border-bottom: 3px solid #4293df;
	position: relative;
}
#sec3 .body h4 .delete {
	position: absolute;
	bottom: 8px;
	right: 10px;
	display: block;
	background-color: #bbb;
	padding: 8px;
	width: 82px;
	font-size: 14px;
	line-height: 1;
	color: #333;
	text-align: center;
	box-sizing: border-box;
}
#sec3 .body h4 .delete:hover {
	opacity: 0.7;
}

#sec3 .fields {
	padding: 0 40px 15px;
}
#sec3 .fields:after {
	content: "";
	clear: both;
	display: block;
}
#sec3 .fields .field.title {
	float: left;
	width: 290px;
}
#sec3 .fields .field.input {
	float: right;
	width: 350px;
}


/* ------------------------------------------------
  ボタン
------------------------------------------------ */

.btns button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

.btns button:disabled{
	opacity: 0.3;
	cursor: default;
}

.input .btns {
	margin-top: 50px;
}

.btns ul {
	text-align: center;
}
.btns li {
	display: inline-block;
	width: 270px;
	margin: 0 15px;
}
.btns li button:not(:disabled):hover {
	opacity: 0.7;
}

.btns li button {
	display: block;
	width: 100%;
	border-width: 1px;
	border-style: solid;
	border-color: #2eb8ec;
	border-radius: 10px;
	padding: 1px;
	box-sizing: border-box;
}
.btns li button span {
	display: block;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	color: #2eb8ec;
	text-align: center;
	width: 100%;
	height: auto;
	padding: 15px;
	border-radius: 8px;
	border: 1px solid #c0eaf9;
	box-sizing: border-box;
}
.btns li button span::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	margin-top: -4px;
	margin-right: 10px;
	background-repeat: no-repeat;
	background-image: url(../img/btn_ico_basic.png);
}
.btns li.no-icon button span::before {
	display: none;
}

/* ----------------------------
  水色ボタン
---------------------------- */

.input .btns li.type2 {
	margin-top: 30px;
}

.btns li.type2 button {
	border: none;
	padding: 2px;
	background-color: #2eb8ec;
}
.btns li.type2 button span {
	border: 1px solid #FFF;
	color: #FFF;
}
.btns li.type2 button span::before {
	background-image: url(../img/btn_ico_other.png);
}

/* ----------------------------
  水色ボタン
---------------------------- */

.btns li.type3 button {
	border: none;
	padding: 2px;
	background-color: #aaaaaa;
}

.btns li.type3 button span {
	border: 1px solid #FFF;
	color: #FFF;
}
.btns li.type3 button span::before {
	background-image: url(../img/btn_ico_other.png);
}

/* 20250529 NDD髙橋 #23378 FBJNDD-40 ステップ追加対応 Add Start */
/* ----------------------------
  ステップ
---------------------------- */
.breadcrumb {
	display: flex;
	width: 800px;
	box-sizing: border-box;
	margin: auto;
	padding: 0;
	border-radius: 8px;
	overflow: hidden;
	background-color: #4293df;
	font-size: .9em;
	font-weight: bold;
	color: #ffffff;
	text-decoration: none;
	margin-bottom: 25px;
}

/* 各ステップの設定 */
.breadcrumb li {
	display: flex;
	width: -webkit-fill-available;
	height: 40px;
	align-items: center;
	text-align: center;
	justify-content: center;
	position: relative;
	padding-left: 5px;
}

/* 矢羽根の設定（一番後ろは不要） */
.breadcrumb li:not(:last-child)::before,
.breadcrumb li:not(:last-child)::after{
	position: absolute;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	content:'';
	}

.breadcrumb li:not(:last-child)::before{
	right: -8px;
	border-left: 10px solid #EEEEEE;
	z-index: 1;
}

.breadcrumb li:not(:last-child)::after{
	right: -6px;
	border-left: 10px solid #4293df;
	z-index: 1;
}

/* 現在のステップ_色を変更 */
.CurrentPage {
	background-color: #2eb8ec;
}

.CurrentPage::after{
	right: -6px !important;
	border-left: 10px solid #2eb8ec !important;
}
/* 20250529 NDD髙橋 #23378 FBJNDD-40 ステップ追加対応 Add End */

/* ------------------------------------------------
  申請確認画面
------------------------------------------------ */

.answer {
	letter-spacing: normal;
	font-weight: bold;
	word-wrap: break-word;
}

.answer.check {
	display: block;
	border: 1px solid #aaa;
	background-color: #FFF;
	width: 18px;
	height: 18px;
	margin-top: 3px;
	position: relative;
}
.answer.check::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 1px;
	width: 13px;
	height: 7px;
	border-left: 4px solid #4293df;
	border-bottom: 4px solid #4293df;
	-webkit-transform: scale(0.7, 0.8) rotate(-45deg);
	transform: scale(0.7, 0.8) rotate(-45deg);
}

.attachment .answer a {
	display: inline-block;
	padding: 10px 20px;
	box-sizing: border-box;
	color: #FFF;
	text-align: left;
	background-color: #aaa;
	border-radius: 4px;
	word-break:break-all;
}
.attachment .answer a:hover {
	opacity: 0.7;
}

.confirm .btns {
	margin-top: 0;
}


/* ------------------------------------------------
  申請完了画面
------------------------------------------------ */

.send .message {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}


/* ------------------------------------------------
  ログイン画面
------------------------------------------------ */

.login .body {
	width: 370px;
	margin: 0 auto;
}
.login .fields + .fields {
	margin-top: 15px;
}
.login .fields .field.title {
	margin-bottom: 5px;
}

.login .btns {
	margin-top: 38px;
}
.login .btns li {
	width: 100%;
	margin: 0;
}
.login .btns + .cap {
	margin-top: 25px;
	font-size: 16px;
	font-weight: bold;
}
.login .btns + .cap a {
	font-size: 16px;
	color: #2eb8ec;
	text-decoration: underline;
}

/* ----------------------------
  エラー
---------------------------- */

.error {
	padding: 15px 20px;
	border: 2px solid #df4242;
	color: #df4242;
	font-weight: bold;
	margin-bottom: 35px;
}

.error .title {
	font-size: 18px;
	text-align: center;
	margin-bottom: 5px;
}
.error .txt {
	font-size: 15px;
}

/*------------------------------------------------
MYPAGE
------------------------------------------------*/
#form_main .oshirase {
  border-top: 1px solid #ecf4fc;
}

#form_main .oshirase:last-child {
  margin-bottom: 50px;
}

#form_main .oshirase li {
  border-bottom: 1px solid #ecf4fc;
  padding: 25px 20px;
  width: 100%;
  display: table;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#form_main .oshirase li .date, #form_main .oshirase li .txt {
  display: table-cell;
  vertical-align: top;
}

#form_main .oshirase li .date {
  font-weight: bold;
  width: 120px;
}

/*------------------------------------------------
 end MYPAGE
------------------------------------------------*/
