@charset "UTF-8";
/*------------------------------------*
		INDEX
*------------------------------------*/
/**
 * -- 共通 --
 * 【00】・・・各ページ共通
 *
 * -- トップ系 --
 * 【01】・・・トップ
 * 【02】・・・xxx
 *
 * -- サービス系 --
 * 【03】・・・駅データ
 * 【04】・・・xxx
 * 【xx】・・・xxx
 * 【xx】・・・xxx
 *
 * -- xx系 --
 * 【xx】・・・xxx
 * 【xx】・・・xxx
 *
 * -- その他 --
 * 【xx】・・・お問い合わせ
 * 【xx】・・・エラー
 */
 
/*------------------------------------*
	【00】各ページ共通
*------------------------------------*/
.layout-basic {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: relative;
    padding-bottom: 60px;
    box-sizing: border-box;
}
.footer-wrap {
    position: absolute;
    bottom: 0;
}
a {
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}
.font-attention {
    color: #E83A22;
}
.circle.font-attention li:before {
    background: #e83a22;
}
/* btn フォントアイコン */
.btn-f-icon:before {
	font-family: "myfont";
	position: absolute;
	top: 50%;
	/* left: 30px; */
	left: 20px;
	/* margin-top: -31px; */
	margin-top: -28px;
	font-size: 16px;
	font-weight: normal;
}
.btn-f-icon:hover:before {
	margin-top: -25px;
}
.btn-f-icon.icon-return:before {
	content: "\EA07";
}
button[type="button"]:hover {
	opacity: 0.8;
}
.border-wrap {
	border: 1px solid #ddd;
	padding: 10px 15px 8px;
}
/* フォーム disabled readonly*/
.form-control[disabled],
.form-control[readonly] {
    background-color: #e5e5e5;
}
/* チェックボックス */
.check-box-wrap {
	font-size: 14px;
}
.check-box-wrap input[type=checkbox] {
	display: none;
}
.check-box-set {
	position: relative;
	margin-right: 10px;
	margin-bottom: 10px;
}
.check-box-wrap .checkbox-label {
	font-weight: normal;
	/* margin-bottom: 3px; */
	margin-bottom: 0;
	display: inline-block;
	padding-left: 25px;
	font-size: 15px;
	cursor: pointer;
}
.check-box-wrap .checkbox-label::before {
	content: "";
	display: block;
	position: absolute;
	/* top: 50%; */
	top: 14px;
	left: 0;
	width: 15px;
	height: 15px;
	background: #f4f4f4;
	border: 1px solid #bbb;
	border-radius: 3px;
	margin-top: -11px;
}
.check-box-wrap input[type="checkbox"]:checked + .checkbox-label::after {
	content: "";
	display: block;
	position: absolute;
	/* top: 50%; */
	top: 14px;
	left: 5px;
	width: 6px;
	height: 9px;
	margin-top: -9px;
	border-right: 3px solid #666;
	border-bottom: 3px solid #666;
	transform: rotate(45deg);
}
/* チェックボックス子要素 */
.check-box-set-child {
	margin-left: 20px;
	margin-top: 5px;
}
.check-box-set-child .check-box-set {
	display: inline-block;
}
.check-box-set-child ul li {
	display: inline-block;
	margin-right: 25px;
}
/* ラジオボタン */
.radio-btn-wrap {
	font-size: 14px;
}
.radio-btn-wrap input[type=radio] {
	display: none;
}
.radio-btn-set {
	position: relative;
	/* display: inline-block; */
	margin-right: 10px;
	margin-bottom: 3px;
}
.radio-btn-wrap .radio-label {
	font-weight: normal;
	margin-bottom: 3px;
	/* display: block; */
	display: inline-block;
	padding-left: 23px;
	font-size: 15px;
	cursor: pointer;
}
.radio-btn-wrap .radio-label::before {
	content: "";
	display: block;
	position: absolute;
    /* top: 50%; */
    top: 12px;
	left: 0;
	width: 14px;
	height: 14px;
	background: #f4f4f4;
	border: 1px solid #aaa;
	border-radius: 50%;
	margin-top: -9px;
}
.radio-btn-wrap input[type="radio"]:checked + .radio-label::after {
	content: "";
	display: block;
	position: absolute;
    /* top: 50%; */
    top: 12px;
	left: 4px;
	width: 6px;
	height: 6px;
	background: #666;
	border-radius: 50%;
	margin-top: -5px;
}
.radio-btn-set-textinput {
	margin-left: 23px;
}
/* ラジオボタンdisabled */
input[type=radio][disabled] + .radio-label {
	color: #ccc;
}
input[type=radio][disabled] + .radio-label::before {
	border: 1px solid #ddd;
}
.icon-radio-circle li img {
	margin-right: 13px;
    margin-left: 3px;
}
/* セレクトボックス */
.select-box-wrap {
	position: relative;
	width: 100%;
	/*display: inline-block;*/
	display: block;
	font-size: 0;
	vertical-align: top;
}
.select-box-wrap::after {
	content: "▼";
	font-size: 10px;
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -8px;
	pointer-events: none;
	background: none;
	display: initial;
	width: initial;
	height: initial;
}
.select-box-wrap.disabled::after {
	content: none;
}
.select-box-wrap select {
	background: #fff;
	background-image: none;
	height: 40px;
	line-height: 40px;
	padding-right: 30px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	padding-left: 8px;
	vertical-align: top;
	width: 100%;
	border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}
.select-box-wrap select[disabled] {
	cursor: default!important;
	background-color: #eee!important;
    color: #bbb!important;
}
.select-box-wrap select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #333;
}
.select-box-wrap select:-moz-focusring * {
	color: #333;
	text-shadow: none;
}
.select-box-wrap select::-ms-expand {
	display: none;
}
.select-box-wrap select:focus {
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}
/* 住所入力ボタン */
.adress-btn {
	margin-top: -1px;
}
.adress-btn.btn-type.type03 {
	box-shadow: none;
}
.adress-btn.btn-type.type03:hover {
    height: 40px;
    margin-top: 0;
    box-shadow: none;
    opacity: 1;
}
/* フォームエラー */
.contact-form .form-control.form-error {
    background-color: #ffe1e1!important;
    border: 2px solid #e83a22;
}
.select-box-wrap select.form-error {
	background-color: #ffe1e1!important;
    border: 2px solid #e83a22;
}
.btn-type.type03.form-error {
    background-color: #ffe1e1!important;
    border: 2px solid #e83a22!important;
}
.btn-type.type04.form-error {
    background-color: #ffe1e1!important;
    border: 2px solid #e83a22!important;
}
td.form-error {
	background-color: #ffe1e1!important;
}
.form-error .radio-btn-wrap .radio-label::before {
    /* border: 2px solid #e83a22; */
}
.border-wrap.form-error {
    background-color: #ffe1e1!important;
    border: 2px solid #e83a22!important;
}
/*------------------------------------*
	【xx】お問い合わせ
*------------------------------------*/
/* 共通 */
hr {
	border-top: 4px solid #ddd;
	margin-bottom: 30px;
}
.contact-content {
	/* padding-top: 20px; */
	padding-top: 10px;
	border-top: 4px solid #e5e5e5;
	/* margin-bottom: 50px; */
	margin-bottom: 40px;
}
.contact-content.no-breadcrumb {
	padding-top: 0;
}
.narrow-wrap {
	width: 75%;
	margin: 40px auto 0;
}
.narrow-wrap .caption {
	font-size: 16px;
}
.support-tel {
	background: #e8eff6;
	padding: 30px;
	text-align: center;
}
.support-tel .tel {
	/*font-size: 26px;*/
	margin: 0 10px 0 30px;
}
.support-tel .tel:hover {
	opacity: 0.8;
}
.bg-gray {
	background: #F3F3F3;
}
.bg-blue {
	background: #EAF2F4;
}
/* 営業時間テーブル */
.hours-table {
    padding: 20px;
    margin-bottom: 20px!important;
}
.hours-table dl {
    display: table;
    /* width: 55%; */
	width: 50%;
    margin: 0 auto 5px;
}
.hours-table dt {
	display:table-cell;
	font-size: 15px;
	font-weight: bold;
	width: 5em;
}
.hours-table dd {
	display:table-cell;
}
.hours-table dl:last-child {
    margin: 0 auto;
}
/* お問い合わせフォーム */
.required {
	vertical-align: top;
}
.required-note {
	font-size: 12px;
	text-align: right;
	color: #555;
}
.contact-form {
	width: 100%;
	margin-bottom: 40px;
}
.contact-form textarea {
	resize: none;
	cursor: text;
}
.form-control::-webkit-input-placeholder {
	color: #bbb;
}
.form-control::-moz-placeholder {
	color: #bbb;
}
.form-control:-ms-input-placeholder {
	color: #bbb;
}
.contact-form dl {
	display:table;
	width: 100%;
	margin-bottom: 25px;
}
.contact-form dl:first-child dt {
	padding-top: 5px;
}
.contact-form dt {
	display:table-cell;
	font-size: 15px;
	font-weight: bold;
	padding-top: 11px;
	width: 25%;
	vertical-align: top;
	height: 40px;
}
.contact-form dt span {
	font-weight: normal;
}
.contact-form dd {
	display:table-cell;
}
.contact-form .form-name {
	display: table;
	width: 100%;
}
.contact-form .form-name span {
	width: 45px;
	font-weight: bold;
	display: table-cell;
	font-size: 15px;
	vertical-align: middle;
}
.contact-form dd input {
	display: table-cell;
}
.contact-form .form-name input + span {
	padding-left: 20px;
	width: 45px;
	box-sizing: content-box;
}
.contact-form .form-control {
	border: 2px solid #ccc;
	border-radius: 5px;
	font-size: 15px;
}
.contact-form input.form-control {
	height: 40px;
	cursor: text;
}
.note-wrap.type02 {
	font-size: 14px;
	margin-bottom: 40px;
}
.note-wrap.type02 .title {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 5px;
}
.note-wrap.type03 {
	font-size: 14px;
	margin-bottom: 40px;
	border: 1px solid #DDDDDD;
	padding: 15px;
}
.validation-wrap {
	font-size: 14px;
	margin-top: 10px;
	line-height: 1;
}
.validation-wrap .caution {
	margin: 5px 0;
	font-size: 14px;
	color: #e83a22;
	letter-spacing: normal;
}
.validation-wrap p.caution {
	margin: 0;
}
.validation-wrap .caution .fe:before {
	vertical-align: middle;
	margin-right: 3px;
}
.mark-warning {
	display: inline-block;
	background-color: #e83a22;
	border-radius: 2px;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	letter-spacing: 1px;
	padding: 0 4px;
	white-space: nowrap;
	vertical-align: middle;
	height: 20px;
	line-height: 20px;
}
.mark-warning.headline {
	line-height: 17.6px;
	margin: -1px 0 0 10px;
}

.caption-area .mark-warning {
	margin-right: 3px;
}
.check-box-wrap .mark-warning {
    margin-top: -3px;
    margin-right: 20px;
}
/*
.check-list label{
	display:block;
	position:relative;
	padding-left:1.5em;
	line-height:2em;
	font-size:15px;
}
.check-list label input{
	position:absolute;
	top:-0.2em;
	bottom:0;
	left:0;
	margin:auto;
}*/

.contact-item-list table {
	width: 100%;
}
.contact-item-list table th {
	background-color: #f3f3f3;
	border: 1px solid #ddd;
	width: 200px;
	padding-left: 15px;
}
.contact-item-list table td {
	border: 1px solid #ddd;
	/* padding: 18px 0 18px 15px; */
	padding: 18px 15px;
}
.contact-item-list.form-result table td {
	padding: 10px 0 10px 15px;
}
span.mark-warning-wrap {
    display: block;
    position: relative;
    height: auto;
}
.contact-item-list table th span.mark-warning {
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -11px;
}
.contact-item-list table th, .contact-item-list table td {
	vertical-align: middle;
	height: 45px;
}
.contact-item-list.form-result li {
	margin-bottom: 5px;
}
.contact-item-list.form-result li .fe {
	font-size: 11px;
	font-weight: bold;
	margin-right: 10px;
	margin-left: 2px;
}
.contact-item-list span + span {
	margin-left: 1em;
}
/* 親子行デザイン */
.contact-item-list table .tr-parent th,
.contact-item-list table .tr-parent td {
	border-bottom: none;
}
.contact-item-list table .tr-child th,
.contact-item-list table .tr-child td {
	border-top: none;
	border-bottom: none;
	padding: 10px 15px;
}
.contact-item-list table .tr-child th {
	padding-left: 30px;
	font-weight: normal;
	padding: 10px 0 10px 30px;
}

.contact-item-list p,
.contact-item-list table td {
	word-wrap: break-word; 
}

/* お問い合わせ内容確認 */

.contact-confirm {
	display:table;
	width: 100%;
	margin-bottom: 30px;
}
.contact-confirm dl {
	display:table-row;
}
.contact-confirm dl:first-child dt {
	padding-top: 0;
}
.contact-confirm dt {
	display:table-cell;
	font-size: 15px;
	font-weight: bold;
	padding: 25px 0;
	width: 25%;
	border-bottom: 2px solid #ddd;
}
.contact-confirm dd span:first-child {
	margin-right: 1em;
}
.contact-confirm dd {
	display:table-cell;
	border-bottom: 2px solid #ddd;
	padding-bottom: 25px;
}
.contact-confirm dl:last-child dt,
.contact-confirm dl:last-child dd {
	border-bottom: 4px solid #ddd;
}
.btn-wrap {
	text-align: center;
}
/*------------------------------------*
【xx】tippyツールチップ
*------------------------------------*/
.tippy-box {
	pointer-events: auto!important;
}
.tippy-btn img {
	margin-top: -3px;
}
.tippy-btn:focus {
	outline:none;
}
.tippy-contents {
    padding: 15px;
	padding: 10px 5px 5px;
}
.tippy-contents .title {
    font-weight: bold;
}
.tippy-contents p:last-child {
    margin-bottom: 0;
}

/*------------------------------------*
【xx】エラーページ
*------------------------------------*/

/* 共通 */
h2.ttl-error {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 40px;
}

.error-content-wrapper {
	/* width: 1120px;
	margin: 0 auto; */
	position: relative;
	text-align: center;
	border-top: 4px solid #e5e5e5;
}

.error-content {
	width: 1120px;
	margin: 0 auto;
	/* padding-top: 200px; */
	padding-top: 140px;
}

.error-content p {
	margin-bottom: 80px;
	line-height: 1.8;
}

hr.below-header {
	border-top: 4px solid #e5e5e5;
	margin: 0;
}
/*------------------------------------*
【xx】退会用お問い合わせフォーム
*------------------------------------*/
.contact-item-list-child {
	border: 1px solid #ddd;
	margin-bottom: 30px;
}
.contact-item-list-child h4 {
	background: #F3F3F3;
    font-size: 16px;
    padding: 14px 15px;
	line-height: 16px;
	margin: 0;
}

.contact-item-list.no-table table {
	
}
.contact-item-list.no-table table tr {

}
.contact-item-list.no-table table th {
	border: 0;
	background-color: transparent;
	width: 245px;
}
.contact-item-list.no-table table th.vertical-top {
	vertical-align: top;
	padding: 18px 0 18px 15px;
}
.contact-item-list.no-table table td {
	border: 0;
	padding: 18px 15px;
}
/* table padding無し */
.contact-item-list.no-table.no-padding table th,
.contact-item-list.no-table.no-padding table td {
    padding: 5px 0;
}
/* 画像アップローダー */
.image-uploader {

}
.image-uploader li {
	margin-bottom: 15px;
	position: relative;
}
.image-uploader li:last-child {
	margin-bottom: 0;
}
.image-uploader li.done {
	background: #F3F3F3;
    padding: 8px 50px 8px 12px;
	overflow: hidden;
    text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 563px;
}
.image-uploader li.done:last-child {
	margin-bottom: 10px;
}
.image-uploader li .btn-delete {
	position: absolute;
    top: 50%;
    right: 15px;
    font-size: 20px;
    margin-top: -10px;
	color: #bbb;
	cursor: pointer;
}
.image-uploader li .btn-delete:hover {
	opacity: 0.8;
}
.image-uploader .validation-wrap .caution {
	margin-bottom: 10px;
}
.btn-type.type04 {
	font-size: 15px;
	height: 40px;
	line-height: 38px;
	/* box-shadow: -2px -4px 0 rgba(0,0,0,0.25) inset; */
	font-weight: normal;
}
.btn-type.type04:hover {
	/* height: 38px;
	margin-top: 4px;
	box-shadow: 2px 4px 0 rgba(0,0,0,0.25) inset;
	opacity: 1; */
	background-color: #d2f0ff;
}
.btn-clr05 {
	border: 2px solid #ccc;
	background: #fff;
	/* line-height: 40px !important; */
	/* border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8; */
}

/* contact-info-area */
/* .contact-info-area {
	background: #EAF2F4;
	padding: 15px;
}
.contact-info-area dl {
	font-size: 0;
    width: 50%;
    margin: 0 auto;
}
.contact-info-area dt {
	display: inline-block;
    width: 75px;
    font-size: 15px;
}
.contact-info-area dd {
    display: inline-block;
    width: calc(100% - 75px);
    font-size: 14px;
} */

/* モーダル(白) */
.modal-white.modal-overlay.type01 {
    background-color: rgba(0, 0, 0, 0.25);
}
.modal-white.modal-content .modal-header {

    border-bottom: 2px solid #E5E5E5;
    background-color: #fff;
}
.modal-white.modal-content .modal-header .modal-ttl-wrap {
    margin: 9px 0 9px 30px;
    padding-left: 0;
    border-left: none;
    font-size: 20px;
}
.modal-white.modal-content .modal-header .btn-wrap.type05 .btn {
    height: 30px;
    padding: 4px 10px 4px 18px;
    line-height: 1.42857143;
}
.modal-white.modal-content .modal-header .btn-wrap.type05 .text {
    margin-left: 0;
}

.modal-white.modal-content .modal-header .btn-wrap.type05 .btn .fe:before {
    font-size: 12px;
	margin-top: -7px;
}
.modal-white .modal-info {
	padding: 0 30px;
}
.modal-white .modal-info p {
	margin:0;
}
.modal-white .modal-info .title {
	font-size: 15px;
    font-weight: bold;
	margin-bottom: 5px;
}
.modal-white .modal-info .number {
	background: #F3F3F3;
	display: inline-block;
    padding: 5px 10px;
	margin-bottom: 5px;
}

/* 確認画面 テーブル */
table.type-confirm-list {
	margin-bottom: 40px;
	table-layout: fixed;

}
table.type-confirm-list tr {

}
table.type-confirm-list th {
	border: none;
	border-bottom: 1px solid #ddd;
    background-color: transparent;
	width: 260px;
}
table.type-confirm-list td {
	border: none;
	border-bottom: 1px solid #ddd;
}
/*------------------------------------*
【xx】データ生成サービス
*------------------------------------*/
/* ファイルアップロード */
.h3-step-style {
	background: #E8EFF6;
    font-size: 20px;
    padding: 10px;
	font-weight: bold;
	margin-bottom: 20px;
}
.download-data-table {
    background: #f3f3f3;
}
.form-add-text {
    font-weight: bold;
	font-size: 15px;
	margin-left: 15px;
}

.terms-of-service {
    border: 1px solid #ccc;
	padding: 20px 12px;
	height: 200px;
	overflow-y: auto;
	margin-bottom: 10px;
}
.terms-of-service-maintitle {
	font-size: 16px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 0;
}
.terms-of-service-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 15px;
}
.terms-of-service p {
    margin-bottom: 5px;
	text-indent: 1em;
}
/* インデント */
ul.indent {
	/* padding-left: 30px; */
	padding-left: 40px;
}
.indent > li {
	position: relative;
	margin-bottom: 2px;
}
.indent > li span {
	position: absolute;
	top: 0;
	left: -2.5em;
	text-align: right;
	display: block;
	width: 2em;
}
.indent > li > .indent {
	margin-top: 10px;
	padding-left: 30px;
}
/* ファイルダウンロード_認証 */
.download-company-name {
	font-size: 20px;
	margin-bottom: 20px;
}
.download-company-name span {
    font-size: 16px;
}
.downloal-date-wrap {
	margin-bottom: 40px;
    padding: 10px 15px;
	border: 1px solid #ddd;
}
.downloal-date {
	margin-bottom: 0;
    font-size: 16px;
    font-weight: bold;
	color: #E83A22;
	text-align: center;
}

/* ファイルダウンロード_URL表示 */
.downloal-url-wrap {
	margin-bottom: 20px;
	color: #1B6BCF;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    border: 1px solid #ddd;
}
.downloal-url-wrap a {
	text-decoration: none;
}
.downloal-url-wrap a:hover {
	text-decoration: underline;
}

/*------------------------------------*
ステップチャート
*------------------------------------*/
.step-chart-list {
	padding: 0;
	margin: 0 0 20px 0;	
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.step-chart-list li {
	position: relative;
	background: #F3F3F3;
	font-size: 14px;
	width: 204px;
	height: 42px;
	line-height: 42px;
	text-align: center;
	margin-right: 8px;
}
.step-chart-list li:last-child {
	margin-right: 0;
}
.step-chart-list li.active {
	background: #D3E0ED;
	font-weight: bold;
}
.step-chart-list li:before,
.step-chart-list li::after {
	position: absolute;
	content: '';
	width: 0px;
	height: 0px;
}
.step-chart-list li:before {
    z-index: 1;
    border-width: 21px 0px 21px 8px;
    border-color: transparent transparent transparent #fff;
	left: 0;
}
.step-chart-list li::after {
    z-index: 2;
    border-width: 21px 0px 21px 8px;
    border-color: transparent transparent transparent #F3F3F3;
    right: -8px;
}
.step-chart-list li.active::after {
	border-color: transparent transparent transparent #D3E0ED;
}
.step-chart-list li:first-child::before {
	border-width: 0;
}
.step-chart-list li:last-child::after {
	border-width: 0;
}
/*------------------------------------*
分岐ページ
*------------------------------------*/
.contact-select-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
}

.contact-select-box {
	width: 400px;
	border: solid 1px #DDD;
}

.contact-select-box:last-child {
	margin-left: auto ;
}

.contact-select-ttl {
	text-align: center;
	background: #F3F3F3;
	margin: 0;
	padding: 22px 0;
	font-size: 20px;
	font-weight: bold;
}
.contact-select-ttl img {
	margin-right: 10px;
    vertical-align: top;
}
.contact-select-ttl span {
    vertical-align: bottom;
}

.contact-select-text {
    min-height: 202px;
    padding: 30px 30px 20px;
}

.contact-select-text p:last-child {
	margin: 0;
}
.contact-select-box .btn-wrap {
	width: 340px;
	margin:  0 auto;
}

.contact-select-box .btn-type.btn-just {
    display: inline-block;
    width: 340px;
    padding: 0;
    text-align: center;
}

.contact-select-box .btn-type.btn-just:focus {
	text-decoration: none;
}

/*------------------------------------*
チェックが入ったら表示/非表示
*------------------------------------*/
.check-box-caution {
	margin: 5px 0 0 20px;
	color: #555555;
}

h3.ttl-box + * {
	font-size: 15px;
}