.entry_ti{
    margin: 2em auto;
    font-size: 3.5vw;
    line-height: 1.5em;
}


.stepBar {
	display: flex;
	max-width: 9-%;
	position: relative;
	margin: 20px auto;
	text-align: center;
	padding: 0;
}
.stepBar li {
	font-size: 14px;
	list-style: none;
	position: relative;
	width: 33.333%;
}
.stepBar li:after {
	background: #D0E1F9;
	content: "";
	width: calc(100% - 24px);
	height: 4px;
	position: absolute;
	left: calc(-50% + 18px);
	top: 15px;
}
.stepBar li:first-child:after {
	display: none;
}
.stepBar li span {
	background: #D0E1F9;
	color: #ffffff;
	display: inline-block;
	height: 35px;
	margin-bottom: 5px;
	line-height: 35px;
	width: 35px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.stepBar .visited:after {
	background: #042455;
}
.stepBar .visited span {
	background: #042455;
}
.form_section {
	width: 96%;
	margin: 0 auto 20px;
}
.form_intro p {
	background: #eee;
	padding: 20px;
}
.form_wrap {
	border-radius: 3px;
	box-shadow: 0 0 2px 0 #d7d7d7;
	padding: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #FFF;
}
.form_subttl {
	margin-bottom: 10px;
}
.form_subttl p {
	border-bottom: 5px solid #eee;
	padding: 5px 5px 10px 5px;
	font-weight: bold;
	font-size: 16px;
}
.form {
	width: 100%;
	margin: 0 auto;
	border-top: none;
}
.form>tbody>tr>th,
.form>tbody>tr>td {
	/* -webkit-box-sizing: border-box; */
	-moz-box-sizing: border-box;
	/* box-sizing: border-box; */
	/* width: 100%; */
}
.form tr th {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
        padding: 0.5em;
        padding-bottom: 0;
        font-size: 3.5vw;
        line-height: 2em;
        font-weight: bold;
        margin-top: 1em;
}
.form th p {}
.form th span.form_required,
.form th span.form_any {
        font-size: 3vw;
        font-weight: bold;
        padding: 0 0.5em;
        line-height: 2em;
        border-radius: 3px;
        margin-left: 1em;
}
.form th span.form_required {
	border: 1px solid #ff4a32;
	color: #ff4a32;
	background: #FFE8E5;
}
.form th span.form_any {
	border: 1px solid #237dc0;
	color: #237dc0;
	background: #dfebf5;
}
.form td {
	display: block;
	padding: 5px;
}
.form td input[type="text"],
.form td input[type="tel"],
.form td input[type="password"],
.form td input[type="number"],
.form td textarea,
.form td select {
	font-size: 3.5vw;
	line-height: 1.5em;
	padding: 8px 15px;
	border: 1px solid #ccdae4;
	background: #f5f9fc;
	font-family: 'Arial', YuGothic, 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;
	margin-bottom: 4px;
	margin-right: 2px;
	height: auto;
}
.form td input[type="file"] {
	cursor: pointer;
	height: 35px;
	font-family: 'Arial', YuGothic, 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
}
.form td .jcjs_imgbox {}
.form td .ui-datepicker-trigger {
	vertical-align: middle;
	margin-right: 5px;
	cursor: pointer;
	width: 20px;
	height: auto;
}
.form td select {
	cursor: pointer;
	height: 42px;
	width: 100%;
}
.form td textarea {
	height: 150px;
	display: block;
	width: 100%;
}
.form td label {
        border: 1px solid #ccdae4;
        background: #f5f9fc;
        cursor: pointer;
        border-radius: 3px;
        padding: 0.5em;
        display: inline-block;
        margin: 0 2px 4px 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        width: fit-content;
        font-size: 3vw;
        line-height: 2em;
}
.form td label input {
	width: 18px;
	height: 18px;
	margin-right: 5px;
}
.form td label input[type="checkbox"],
.form td label input[type="radio"] {
	vertical-align: text-top;
	margin: 0 10px 0 0;
	cursor: pointer;
	background-color: initial;
	/* cursor: default; */
	appearance: auto;
	box-sizing: border-box;
	/* margin: 3px 3px 3px 4px; */
	padding: initial;
	border: initial;
}

input::placeholder,text::placeholder {color: #7d7d7d;}


.form td input[type="text"]:hover,
.form td input[type="tel"]:hover,
.form td input[type="password"]:hover,
.form td input[type="number"]:hover,
.form td textarea:hover,
.form td select:hover,
.form td label:hover {
	background: #f9fcf5;
	border: 1px solid #d6eaba;
}
.form_privacy {
	font-size: 13px;
	text-align: center;
}
.form_privacy a {
	color: #006DD9;
}
.form_privacy a:hover {
	text-decoration: underline;
}
.form_submit {
	position: relative;
	width: 100%;
	padding: 20px 0;
}
#jc_btn_submit {
	-webkit-appearance: none;
	border: 2px solid #ccc;
	background: #eee;
	color: #777;
	border-radius: 30px;
	width: 90%;
	height: 60px;
        text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0 0 3px 0 #999;
	padding: 0 40px;
	font-weight: bold;
	margin: 0 auto 30px;
	font-size: 18px;
	display: block;
	font-family: "Yu Gothic", YuGothic, 'Noto Sans Japanese', Roboto, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
}
#jc_btn_submit.jcjs_btn_ok {
	-webkit-appearance: none;
	border: 2px solid #2799fb;
	background: #2799fb;
	color: #fff;
}
#jc_btn_submit.jcjs_btn_ok:hover {
	color: #2799fb;
	background: #fff;
}
/* form_inner
---------------------------------------- */
.form_inner {
	margin-left: 15px;
}
.form_inner,
.form_inner_multi {
	background: #fcfcf5;
	border: 1px solid #f0f0ce;
	padding: 10px;
	margin: 5px 0;
}
.form_inner table,
.form_inner_multi table {
	width: 100%;
	border-top: none;
}
.form_inner_multi input[type="text"]:nth-of-type(3) {
	width: 100%;
}
.form_date .ui-datepicker-trigger {
	display: block;
}
.form_date select {
	width: 27% !important;
}
/* form_error
---------------------------------------- */
.form_error {
	color: #ff4a32;
	font-weight: bold;
	display: block;
	padding: 5px;
}
.form_error_cell {
	background: #FFE8E5;
}
/* item
---------------------------------------- */
.form_item_box {}
.form_item_box li:not(:last-child) {
	margin-bottom: 15px;
}
.form_item_comment {
	font-size: 13px;
	color: #888;
	padding-left: 20px;
	margin-top: 0;
}
.form_w100 input,
.form_w100 textarea,
.form_w100 select,
.form_w100 label {
	width: 100%;
}
.priority100 input[type="text"],
.priority100 input[type="tel"],
.priority100 input[type="password"],
.priority100 input[type="number"],
.priority100 textarea,
.priority100 select,
.priority100 label {
	width: 100% !important;
}
.not100 input[type="text"],
.not100 input[type="tel"],
.not100 input[type="password"],
.not100 input[type="number"],
.not100 textarea,
.not100 select,
.not100 label {
	width: auto !important;
}
.form_w80 input,
.form_w80 textarea,
.form_w80 select,
.form_w80 label {
	width: 80%;
}
.form_w60 input,
.form_w60 textarea,
.form_w60 select,
.form_w60 label {
	width: 60%;
}
.form_w40 input,
.form_w40 textarea,
.form_w40 select,
.form_w40 label {
	width: 40%;
}
.form_w20 input,
.form_w20 textarea,
.form_w20 select,
.form_w20 label {
	width: 20%;
}
span.form_w60.madori select {
	width: 60%;
}
/* fin
---------------------------------------- */
.form_fin_txt {
	border: 5px solid #eee;
	padding: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.form_fin_txt span {
	margin-bottom: 30px;
	line-height: 30px;
	font-size: 22px;
	display: block;
	font-weight: bold;
}
.form_fin_txt p {
	font-size: 14px;
}
.form_fin {
	width: 100%;
}
.form_fin tr {}
.form_fin th,
.form_fin td {
	font-size: 14px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
}
.form_fin th {
	text-align: left;
	background: #FAFAF9;
	padding: 5px;
}
.form_fin td {
	padding: 5px;
	padding-bottom: 15px;
}
.form_fin td p {
	padding: 10px;
	margin-left: 20px;
	background: #fcfcf5;
	border: 1px solid #f0f0ce;
	margin-top: 5px;
	font-size: 13px;
}
.form_fin_link {
	margin: 0 auto 30px;
}
.form_fin_link a {
	display: block;
	background: #111;
	border: 1px solid #111;
	border-radius: 3px;
	color: #fff;
	font-weight: bold;
	width: 90%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	margin: 0 auto;
}
.form_fin_link a:hover {
	color: #111;
	background: #fff;
}
.form_date td select {
	width: 60%;
}
div.jcjs_imgbox {
    height: 180px !important;
    width: 90% !important;
    margin: 1em auto;
}
div.jcjs_imgbox img {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain;
}
.fo_err {
	background-color: #ffe8e5 !important;
	border: 1px solid #ffb7ad !important;
}
.form_pri {
	text-align: center;
	font-size: 14px;
	line-height: 23px;
}
.form_pri a {
	color: #0000ee;
	text-decoration: underline;
}
.form_pri a:hover {
	color: #000;
	text-decoration: none;
}
/* --確認画面体裁調整20220221-- */
.form_conf {}
.form_conf tr {
	display: block;
	margin-bottom: 10px;
}
.form_conf th {
	font-size: 13px;
	color: #aaa;
}
.form_conf td,
.form_conf td>div {
	padding-top: 0;
	font-size: 15px;
	font-weight: bold;
	height: auto;
	min-height: 20px;
}




/* =========================================
  .exhibition-info 配下にネスト
  他セクションのスタイルと干渉しません
========================================= */
 
.exhibition-info {
        margin: auto auto 2em auto;
        width: 96%;
  box-sizing: border-box;
        border-radius: 10px;
}
 
.exhibition-info *,
.exhibition-info *::before,
.exhibition-info *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
.exhibition-info-card {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid #e5e5e3;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
        margin-bottom: 2em;
}
 
/* 外観写真 */
.exhibition-info-photo {
        display: grid;
        grid-template-columns: 1fr;
        border: 1px solid #e5e5e3;
        overflow: hidden;
        background: #fff;
}
 
.exhibition-info-photo img {
  width: 100%;
  height: 100%;
        max-height: 15em;
  object-fit: cover;
  display: block;
}
 
/* テキスト情報エリア */
.exhibition-info-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
.exhibition-info-label {
  font-size: 11px;
  color: #9c9a92;
  margin-bottom: 3px;
  line-height: 1.4;
}
 
.exhibition-info-name {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a18;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e3;
  line-height: 1.4;
}
 
/* 項目リスト */
.exhibition-info-items {
  display: flex;
  gap: 0;
}
 
.exhibition-info-item {
  flex: 1;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 4px 0;
}
 
.exhibition-info-item + .exhibition-info-item {
  padding-left: 16px;
  margin-left: 16px;
  border-left: 1px solid #e5e5e3;
}
 
.exhibition-info-icon {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  color: #1a1a18;
  opacity: 0.35;
}
 
.exhibition-info-item-key {
  font-size: 11px;
  color: #9c9a92;
  margin-bottom: 3px;
  line-height: 1.4;
}
 
.exhibition-info-item-val {
  font-size: 13px;
  color: #1a1a18;
  line-height: 1.5;
}
 
.exhibition-info-item-sub {
  display: block;
  font-size: 11px;
  color: #9c9a92;
  margin-top: 1px;
}
 
.exhibition-info-map-link {
  display: block;
  font-size: 11px;
  color: #1a6bb5;
  text-decoration: none;
  margin-top: 1px;
}
 
.exhibition-info-map-link:hover {
  text-decoration: underline;
}
 
