Commit 3f0657c8 by Yujin Seo

Merge branch 'feature/1.4.0_lmk' into feature/1.4.0_seo

parents 3f504368 6000dac6
......@@ -10254,7 +10254,6 @@ input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-
}
.navbar,.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between
......@@ -20162,6 +20161,65 @@ button {
transition: .3s
}
.scan-overlay {
left: 0;
width: 100%;
top: 0;
height: calc(100%);
display: block;
position: absolute;
background: #000;
opacity: .5;
z-index: 1031;
transition: .3s
}
.alert-overlay {
left: 0;
width: 100%;
top: 0;
height: calc(100%);
display: block;
position: absolute;
background: #000;
opacity: .5;
z-index: 1031;
transition: .3s
}
.scan-area {
text-align: -webkit-center;
border-radius: 15px;
z-index: 1032;
height: calc(40%);
width: 60%;
position: absolute;
top: 10%;
left: 20%;
background-color: white;
}
.alert-area {
border-radius: 15px;
z-index: 1032;
height: calc(40%);
width: 60%;
position: absolute;
top: 10%;
left: 20%;
background-color: white;
}
.loading-spinner {
color: lightslategray;
}
.loading-close {
margin-right: 1%;
margin-top: 1%;
display: inherit;
}
.overlay.open {
width: 100%
}
......
......@@ -24,6 +24,14 @@
<i class="fa fa-folder fs-12 p-1" id="category-toggle-button"></i>
<span class="d-none d-md-inline fs-10">カテゴリー</span>
</a>
<a class="navbar-brand lht-0" href="#" style="margin: 0 10px 0 10px;float: right;">
<i class="fa fa-redo fs-12 p-1" id="updateButton" onclick="CHK_L.sendAppCommand('refreshContent');"></i>
<span class="d-none d-md-inline fs-10">更新</span>
</a>
<a class="navbar-brand lht-0" href="#" style="margin: 0 10px 0 10px;float: right;">
<i class="fa fa-wifi fs-12 p-1" id="rfidScanButton" onclick="CHK.startScan();"></i>
<span class="d-none d-md-inline fs-10">スキャン</span>
</a>
</nav>
</header>
......@@ -101,12 +109,12 @@
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item sort-type" data-sort="0" onclick="CHK.changeSortType(this);">作業名順</a>
<a class="dropdown-item sort-type" data-sort="1" onclick="CHK.changeSortType(this);">作業期間が新しい順</a>
<a class="dropdown-item sort-type active" data-sort="2" onclick="CHK.changeSortType(this);">作業期間が古い順</a>
<a class="dropdown-item sort-type active" data-sort="2" id="defaultSort" onclick="CHK.changeSortType(this);">作業期間が古い順</a>
<a class="dropdown-item sort-type" data-sort="3" onclick="CHK.changeSortType(this);">報告タイプ順</a>
<a class="dropdown-item sort-type" data-sort="4" onclick="CHK.changeSortType(this);">閲覧日が新しい順</a>
</div>
<a href="javascript:CHK_L.sendAppCommand('refreshContent');" class="text-decoration-none py-2 lht-0 d-inline-block ml-3">
<i class="fa fa-redo text-dark"></i>
<a href="javascript:CHK_L.sendAppCommand('resetSearch');" class="text-decoration-none py-2 lht-0 d-inline-block ml-3">
<i class="fa fa-times text-dark"></i>
<span class="d-none d-md-inline text-dark fs-10">
リセット
</span>
......@@ -161,7 +169,17 @@
</nav>
</footer>
<div class="scan-overlay d-none"></div>
<div class="alert-overlay d-none"></div>
<div class="scan-area d-none">
<i class="text-right fas fa-times fa-2x loading-close" onclick="CHK.scanClose();"></i>
<i class="fas fa-spinner fa-5x fa-spin loading-spinner"></i>
<div class="fs-13 mt-4 text-center">読み込み中</div>
</div>
<div class="alert-area d-none">
<i class="text-right fas fa-times fa-2x loading-close" onclick="CHK.alertClose();"></i>
<div class="fs-13 mt-4 text-center" id="alertMsg"></div>
</div>
<script type="text/javascript" src="js/app.js" defer></script>
</body>
......
......@@ -57,6 +57,8 @@ var msgMap = { // velocity?
completeUpload: {ja:"登録が完了しました。<br/>右上の閉じるボタンをクリックし、画面を閉じてください。", ko:"등록했습니다. <br/>오른쪽 위의 닫기버튼을 클릭해, 화면을 닫아주세요.", en:"Registered. <br/>Please click the close button in the upper right and close the screen."},
Yes: {ja:"はい", ko:"Yes", en:"Yes"},
No: {ja:"いいえ", ko:"No", en:"No"},
onlyRfid:{ja:"RFID又はバーコードが設定されています。<br/>該当コードを読み込んでください。", ko:"RFID또는 바코드가 설정되어있습니다. <br/>해당코드를 스캔해주십시오.", en:"RFID or barcode is set. <br/>Please scan the code."},
notExistCode:{ja:"読み込んだコードと一致しません。<br/>コードを確認してもう一度お願いします。<br/>", ko:"스캔된코드와 일치하는 작업이 존재하지않습니다. <br/>코드를 확인하고 한번도 시도해주세요. <br/>", en:"No action exists that matches the scanned code. <br/>Please check the code and try it once. <br/>"},
overwriteCheck: {ja:"未公開のバージョンの簡易帳票が存在します。<br/>上書きしますか?", ko:"미공개 버전의 간이 서류가 존재합니다. <br/>덮어 쓰시겠습니까?", en:"There is an unpublished version of the quick report. <br/>Do you want to overwrite?"},
};
......@@ -135,6 +137,7 @@ CHK.apiCmd = {
goOperation: "goOperation", //作業開始
goPanoramaEdit: "goPanoramaEdit", //パノラマ作業資料編集
refreshContent: "refreshContent", //新着更新
resetSearch: "resetSearch", //検索条件初期化
editAttached: "editAttached", //添付ファイル編集
saveAttached: "saveAttached", //添付ファイル保存
insertReport: "insertTaskReport", //作業報告保存
......@@ -2801,7 +2804,7 @@ CHK.createCategory = function(operationGroupMasterList) {
if (CHK.isIOS) {
sortIndex = CHK_iOS.getSortType();
} else if (CHK.isAndroid) {
// TODO: 端末に保存したsortTypeを取得
sortIndex = android.getSortType();
}
let sortType = document.getElementsByClassName("sort-type")[sortIndex];
CHK.changeSortType(sortType);
......@@ -2827,7 +2830,7 @@ CHK.createOperationList = function(operationList, isSearched = false) {
if (CHK.isIOS) {
webkit.messageHandlers.saveSortType.postMessage(sortType);
} else if (CHK.isAndroid) {
// TODO: sortTypeを端末に保存
android.setSortType(sortType);
}
}
switch(sortType) {
......@@ -2854,15 +2857,24 @@ CHK.createOperationList = function(operationList, isSearched = false) {
}
}
for (var i = 0; i < operationList.length; i++) {
var operationTR = $("<tr/>");
var operationTR = $("<tr/>");
//TODO aタグlist.html 転移処理
var operationNameTd = $("<td class='operationId_" + operationList[i].operationId
+ "'><a href=\"javascript:CHK_L.sendAppCommand('goOperation', '"
+ operationList[i].operationId + "', '" + operationList[i].contentId
+ "');\" class='d-block text-black text-decoration-none mb-1'>" + operationList[i].operationName
+ "</a><div class='fa-sm mobile_operation_date'><i class='far fa-clock fa-blue' style='color:blue;margin-right:10px'></i>"
+ setOperationDate(operationList[i].operationStartDate) + " ~ "
+ setOperationDate(operationList[i].operationEndDate) +"</div></td>");
var operationNameTd;
if (operationList[i].permitCodeRequiredFlg == 1) {
operationNameTd = $("<td class='operationId_" + operationList[i].operationId
+ "'><a href=\"javascript:CHK.displayAlert('onlyRfid');\" class='d-block text-black text-decoration-none mb-1'>" + operationList[i].operationName
+ "</a><div class='fa-sm mobile_operation_date'><i class='far fa-clock fa-blue' style='color:blue;margin-right:10px'></i>"
+ setOperationDate(operationList[i].operationStartDate) + " ~ "
+ setOperationDate(operationList[i].operationEndDate) +"</div></td>");
} else {
operationNameTd = $("<td class='operationId_" + operationList[i].operationId
+ "'><a href=\"javascript:CHK_L.sendAppCommand('goOperation', '"
+ operationList[i].operationId + "', '" + operationList[i].contentId
+ "');\" class='d-block text-black text-decoration-none mb-1'>" + operationList[i].operationName
+ "</a><div class='fa-sm mobile_operation_date'><i class='far fa-clock fa-blue' style='color:blue;margin-right:10px'></i>"
+ setOperationDate(operationList[i].operationStartDate) + " ~ "
+ setOperationDate(operationList[i].operationEndDate) +"</div></td>");
}
var operationStartDateTd = $("<td/>", {class: "operationStartDate"}).text(setOperationDate(operationList[i].operationStartDate));
var operationEndDateTd = $("<td/>", {class: "operationEndDate"}).text(setOperationDate(operationList[i].operationEndDate));
......@@ -2949,4 +2961,52 @@ CHK.changeOperationGroupMaster = function(operationGroupMasterId) {
CHK.operationGroupMasterId = operationGroupMasterId;
CHK.createCategory(CHK.operationGroupMaster.operationGroupMasterList);
CHK.search();
}
CHK.startScan = function() {
try {
if (CHK.isAndroid) {
android.startScan();
}
} catch (e) {
return;
}
$(".scan-overlay").removeClass("d-none");
$(".scan-area").removeClass("d-none");
}
CHK.scanClose = function() {
try {
if (CHK.isAndroid) {
android.stopScan();
}
} catch (e) {
return;
}
$(".scan-overlay").addClass("d-none");
$(".scan-area").addClass("d-none");
}
CHK.scanResult = function(scannedCode) {
CHK.scanClose();
var operationList = CHK.operation.searchOperationList;
var scannedOperation = operationList.filter(function(operation) {
return operation.permitCode == scannedCode;
})[0];
if (scannedOperation != null) {
CHK_L.sendAppCommand('goOperation', scannedOperation.operationId, scannedOperation.contentId);
} else {
CHK.displayAlert("notExistCode");
}
}
CHK.alertClose = function() {
$(".alert-overlay").addClass("d-none");
$(".alert-area").addClass("d-none");
}
CHK.displayAlert = function(msgCode) {
$("#alertMsg").html(getMsg(msgCode));
$(".alert-overlay").removeClass("d-none");
$(".alert-area").removeClass("d-none");
}
\ No newline at end of file
/* Main style sheet for jQuery Keypad v2.0.0. */
button.keypad-trigger {
width: 25px;
padding: 0px;
}
img.keypad-trigger {
margin: 2px;
vertical-align: middle;
}
.keypad-popup, .keypad-inline, .keypad-key, .keypad-special {
font-family: Arial,Helvetica,sans-serif;
font-size: 14px;
}
.keypad-popup {
display: none;
z-index: 999999;
margin: 0;
padding: 0;
width: 280px;
height: 300px;
background-color: #fff;
color: #000;
border: 1px solid #888;
-moz-border-radius: 0.25em;
-webkit-border-radius: 0.25em;
border-radius: 0.25em;
}
.keypad-keyentry {
display: none;
}
.keypad-inline {
background-color: #fff;
border: 1px solid #888;
-moz-border-radius: 0.25em;
-webkit-border-radius: 0.25em;
border-radius: 0.25em;
}
.keypad-disabled {
position: absolute;
z-index: 100;
background-color: white;
opacity: 0.5;
filter: alpha(opacity=50);
}
.keypad-rtl {
direction: rtl;
}
.keypad-prompt {
clear: both;
text-align: center;
}
.keypad-prompt.ui-widget-header {
margin: 0.125em;
}
.keypad-row {
width: 100%;
}
.keypad-space {
display: inline-block;
margin: 0.125em;
width: 2em;
}
.keypad-half-space {
display: inline-block;
margin: 0.125em 0.0625em;
width: 1em;
}
.keypad-key, .keypad-special {
margin: 0.125em;
padding: 0em;
width: 5em;
height: 5em;
background-color: #f4f4f4;
-moz-border-radius: 0.25em;
-webkit-border-radius: 0.25em;
border-radius: 0.25em;
text-align: center;
cursor: pointer;
}
.keypad-key[disabled] {
border: 0.125em outset;
}
.keypad-key-down {
}
.keypad-special {
width: 4.25em;
}
.keypad-spacebar {
width: 13.25em;
}
.keypad-tab {
width: 2em;
}
.keypad-clear, .keypad-back, .keypad-close, .keypad-shift {
color: #fff;
font-weight: bold;
}
.keypad-clear {
background-color: #a00;
}
.keypad-back {
background-color: #00a;
}
.keypad-close {
background-color: #0a0;
}
.keypad-shift {
background-color: #0aa;
}
/*エディタ用のスタイルです。*/
/*マックでもウィンドウズでも無い場合にこのスタイルが適用されます。*/
/*font size ss*/
.ss {
font-size:60%;
line-height:1.5em;
}
/*font size s*/
.s {
font-size:78%;
line-height:1.6em;
}
/*font size m*/
.m {
font-size:86%;
line-height:1.6em;
}
/*font size L*/
.L {
font-size:108%;
line-height:1.56em;
}
/*font size LL*/
.LL {
font-size:114%;
line-height:1.5em;
}
#overlay{background:#000;position:absolute;top:0;left:0;z-index:10000;width:100%}.prettyPopin{display:none;overflow:hidden;position:absolute;z-index:11000;top:50%;left:50%;background:url(../images/popinLeft.gif) bottom left no-repeat}.prettyPopin a#b_close{display:none;position:absolute;z-index:2;top:10px;right:13px;width:41px;height:9px;text-indent:-10000px;background:url(../images/b_close.gif) bottom left no-repeat}.prettyPopin .prettyContent{position:relative;width:100%;height:100%;font-size:1.2em;background:url(../images/popinRight.gif) bottom right no-repeat}.prettyPopin .prettyContent .prettyContent-container{display:none;padding:20px 15px 15px 15px}.prettyPopin .prettyContent .loader{position:absolute;top:50%;left:50%;margin:-14px 0 0 -14px}
HTML {
background: rgb(255, 255, 255); color: rgb(0, 0, 0);
}
BODY {
margin: 0px; padding: 0px;
}
DIV {
margin: 0px; padding: 0px;
}
DL {
margin: 0px; padding: 0px;
}
DT {
margin: 0px; padding: 0px;
}
DD {
margin: 0px; padding: 0px;
}
UL {
margin: 0px; padding: 0px;
}
OL {
margin: 0px; padding: 0px;
}
LI {
margin: 0px; padding: 0px;
}
H1 {
margin: 0px; padding: 0px;
}
H2 {
margin: 0px; padding: 0px;
}
H3 {
margin: 0px; padding: 0px;
}
H4 {
margin: 0px; padding: 0px;
}
H5 {
margin: 0px; padding: 0px;
}
H6 {
margin: 0px; padding: 0px;
}
PRE {
margin: 0px; padding: 0px;
}
CODE {
margin: 0px; padding: 0px;
}
FORM {
margin: 0px; padding: 0px;
}
FIELDSET {
margin: 0px; padding: 0px;
}
LEGEND {
margin: 0px; padding: 0px;
}
INPUT {
margin: 0px; padding: 0px;
}
TEXTAREA {
margin: 0px; padding: 0px;
}
P {
margin: 0px; padding: 0px;
}
BLOCKQUOTE {
margin: 0px; padding: 0px;
}
TH {
margin: 0px; padding: 0px;
}
TD {
margin: 0px; padding: 0px;
}
TABLE {
border-collapse: collapse; border-spacing: 0;
}
FIELDSET {
border: 0px;
}
IMG {
border: 0px;
}
ADDRESS {
font-style: normal; font-weight: normal;
}
CAPTION {
font-style: normal; font-weight: normal;
}
CITE {
font-style: normal; font-weight: normal;
}
CODE {
font-style: normal; font-weight: normal;
}
DFN {
font-style: normal; font-weight: normal;
}
EM {
font-style: normal; font-weight: normal;
}
TH {
font-style: normal; font-weight: normal;
}
VAR {
font-style: normal; font-weight: normal;
}
LI {
list-style: none;
}
CAPTION {
text-align: left;
}
TH {
text-align: left;
}
H1 {
font-size: 100%; font-weight: normal;
}
H2 {
font-size: 100%; font-weight: normal;
}
H3 {
font-size: 100%; font-weight: normal;
}
H4 {
font-size: 100%; font-weight: normal;
}
H5 {
font-size: 100%; font-weight: normal;
}
H6 {
font-size: 100%; font-weight: normal;
}
Q::before {
content: "";
}
Q::after {
content: "";
}
ABBR {
border: 0px; font-variant: normal;
}
ACRONYM {
border: 0px; font-variant: normal;
}
SUP {
vertical-align: text-top;
}
SUB {
vertical-align: text-bottom;
}
INPUT {
font-family: inherit; font-size: inherit; font-weight: inherit;
}
TEXTAREA {
font-family: inherit; font-size: inherit; font-weight: inherit;
}
SELECT {
font-family: inherit; font-size: inherit; font-weight: inherit;
}
INPUT {
}
TEXTAREA {
}
SELECT {
}
LEGEND {
color: rgb(0, 0, 0);
}
DEL {
text-decoration: none;
}
INS {
text-decoration: none;
}
.test10 {
font-size: 77%;
}
.test11 {
font-size: 85%;
}
.test12 {
font-size: 93%;
}
.test13 {
font-size: 100%;
}
.test14 {
font-size: 108%;
}
.test15 {
font-size: 116%;
}
.test16 {
font-size: 123.1%;
}
.test17 {
font-size: 131%;
}
.test18 {
font-size: 138.5%;
}
.test19 {
font-size: 146.5%;
}
.test20 {
font-size: 153.9%;
}
.test21 {
font-size: 161.6%;
}
.test22 {
font-size: 167%;
}
.test23 {
font-size: 174%;
}
.test24 {
font-size: 182%;
}
.test25 {
font-size: 189%;
}
.test26 {
font-size: 197%;
}
/*font size ss*/
.ss {
font-size:65%;
line-height:1.6em;
}
.ss, x:-moz-any-link { /* FireFox 2 */
font-size:65%;
line-height:1.5em;
}
.ss, x:-moz-any-link, x:default { /* FireFox 3 */
font-size:65%;
line-height:1.55em;
}
*+html .ss { /* IE 7 */
font-size:65%;
line-height:1.5em;
}
* html .ss { /* IE 6 */
font-size:65%;
line-height:1.5em;
}
/*font size s*/
.s {
font-size:84%;
line-height:1.45em;
}
.s, x:-moz-any-link { /* FireFox 2 */
font-size:84%;
line-height:1.45em;
}
.s, x:-moz-any-link, x:default { /* FireFox 3 */
font-size:84%;
line-height:1.4em;
}
*+html .s { /* IE 7 */
font-size:80%;
line-height:1.45em;
}
* html .s { /* IE 6 */
font-size:75%;
line-height:1.5em;
}
/*font size m*/
.m {
font-size:86%;
line-height:1.6em;
}
.m, x:-moz-any-link { /* FireFox 2 */
font-size:86%;
line-height:1.6em;
}
.m, x:-moz-any-link, x:default { /* FireFox 3 */
font-size:86%;
line-height:1.6em;
}
*+html .m { /* IE 7 */
font-size:98%;
line-height:1.6em;
}
* html .m { /* IE 6 */
font-size:98%;
letter-spacing:-0.03em;
line-height:1.6em;
}
/*font size L*/
.L {
font-size:112%;
line-height:1.5em;
}
.L, x:-moz-any-link { /* FireFox 2 */
font-size:108%;
line-height:1.5em;
}
.L, x:-moz-any-link, x:default { /* FireFox 3 */
font-size:108%;
line-height:1.5em;
}
*+html .L { /* IE 7 */
font-size:104%;
line-height:1.5em;
}
* html .L { /* IE 6 */
font-size:104%;
letter-spacing:-0.03em;
line-height:1.55em;
}
/*font size LL*/
.LL {
font-size:120%;
line-height:1.6em;
}
.LL, x:-moz-any-link { /* FireFox 2 */
font-size:120%;
line-height:1.5em;
}
.LL, x:-moz-any-link, x:default { /* FireFox 3 */
font-size:119.9%;
line-height:1.5em;
}
*+html .LL { /* IE 7 */
font-size:120%;
line-height:1.5em;
}
* html .LL { /* IE 6 */
font-size:116%;
letter-spacing:-0.1em;
line-height:1.55em;
}
This source diff could not be displayed because it is too large. You can view the blob instead.
/* http://keith-wood.name/datepick.html
Japanese localisation for jQuery Datepicker.
Written by Kentaro SATO (kentaro@ranvis.com). */
(function($) {
$.datepicker.regional['ja'] = {
monthNames: ['1月','2月','3月','4月','5月','6月',
'7月','8月','9月','10月','11月','12月'],
monthNamesShort: ['1月','2月','3月','4月','5月','6月',
'7月','8月','9月','10月','11月','12月'],
dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'],
dayNamesShort: ['日','月','火','水','木','金','土'],
dayNamesMin: ['日','月','火','水','木','金','土'],
dateFormat: 'yy/mm/dd', firstDay: 0,
prevText: '&#x3c;前', prevStatus: '前月を表示します',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '前年を表示します',
nextText: '次&#x3e;', nextStatus: '翌月を表示します',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '翌年を表示します',
currentText: '今日', currentStatus: '今月を表示します',
todayText: '今月', todayStatus: '今月を表示します',
clearText: 'クリア', clearStatus: '日付をクリアします',
closeText: '閉じる', closeStatus: '変更せずに閉じます',
yearStatus: '表示する年を変更します', monthStatus: '表示する月を変更します',
weekText: '週', weekStatus: '暦週で第何週目かを表します',
dayStatus: 'Md日(D)', defaultStatus: '日付を選択します',
isRTL: false,
showMonthAfterYear: true,
yearSuffix: '年'
};
$.datepicker.setDefaults($.datepicker.regional['ja']);
})(jQuery);
/*! Simple JavaScript Inheritance
* By John Resig http://ejohn.org/
* MIT Licensed.
*/
!function(){"use strict";var a=!1;window.JQClass=function(){},JQClass.classes={},JQClass.extend=function b(c){function d(){!a&&this._init&&this._init.apply(this,arguments)}var e=this.prototype;a=!0;var f=new this;a=!1;for(var g in c)if("function"==typeof c[g]&&"function"==typeof e[g])f[g]=function(a,b){return function(){var c=this._super;this._super=function(b){return e[a].apply(this,b||[])};var d=b.apply(this,arguments);return this._super=c,d}}(g,c[g]);else if("object"==typeof c[g]&&"object"==typeof e[g]&&"defaultOptions"===g){var h,i=e[g],j=c[g],k={};for(h in i)k[h]=i[h];for(h in j)k[h]=j[h];f[g]=k}else f[g]=c[g];return d.prototype=f,d.prototype.constructor=d,d.extend=b,d}}(),/*! Abstract base class for collection plugins v1.0.2.
Written by Keith Wood (wood.keith{at}optusnet.com.au) December 2013.
Licensed under the MIT license (http://keith-wood.name/licence.html). */
function($){"use strict";function camelCase(a){return a.replace(/-([a-z])/g,function(a,b){return b.toUpperCase()})}JQClass.classes.JQPlugin=JQClass.extend({name:"plugin",defaultOptions:{},regionalOptions:{},deepMerge:!0,_getMarker:function(){return"is-"+this.name},_init:function(){$.extend(this.defaultOptions,this.regionalOptions&&this.regionalOptions[""]||{});var a=camelCase(this.name);$[a]=this,$.fn[a]=function(b){var c=Array.prototype.slice.call(arguments,1),d=this,e=this;return this.each(function(){if("string"==typeof b){if("_"===b[0]||!$[a][b])throw"Unknown method: "+b;var f=$[a][b].apply($[a],[this].concat(c));if(f!==d&&void 0!==f)return e=f,!1}else $[a]._attach(this,b)}),e}},setDefaults:function(a){$.extend(this.defaultOptions,a||{})},_attach:function(a,b){if(a=$(a),!a.hasClass(this._getMarker())){a.addClass(this._getMarker()),b=$.extend(this.deepMerge,{},this.defaultOptions,this._getMetadata(a),b||{});var c=$.extend({name:this.name,elem:a,options:b},this._instSettings(a,b));a.data(this.name,c),this._postAttach(a,c),this.option(a,b)}},_instSettings:function(a,b){return{}},_postAttach:function(a,b){},_getMetadata:function(elem){try{var data=elem.data(this.name.toLowerCase())||"";data=data.replace(/(\\?)'/g,function(a,b){return b?"'":'"'}).replace(/([a-zA-Z0-9]+):/g,function(a,b,c){var d=data.substring(0,c).match(/"/g);return d&&d.length%2!==0?b+":":'"'+b+'":'}).replace(/\\:/g,":"),data=$.parseJSON("{"+data+"}");for(var key in data)if(data.hasOwnProperty(key)){var value=data[key];"string"==typeof value&&value.match(/^new Date\(([-0-9,\s]*)\)$/)&&(data[key]=eval(value))}return data}catch(a){return{}}},_getInst:function(a){return $(a).data(this.name)||{}},option:function(a,b,c){a=$(a);var d=a.data(this.name),e=b||{};return!b||"string"==typeof b&&"undefined"==typeof c?(e=(d||{}).options,e&&b?e[b]:e):void(a.hasClass(this._getMarker())&&("string"==typeof b&&(e={},e[b]=c),this._optionsChanged(a,d,e),$.extend(d.options,e)))},_optionsChanged:function(a,b,c){},destroy:function(a){a=$(a),a.hasClass(this._getMarker())&&(this._preDestroy(a,this._getInst(a)),a.removeData(this.name).removeClass(this._getMarker()))},_preDestroy:function(a,b){}}),$.JQPlugin={createPlugin:function(a,b){"object"==typeof a&&(b=a,a="JQPlugin"),a=camelCase(a);var c=camelCase(b.name);JQClass.classes[c]=JQClass.classes[a].extend(b),new JQClass.classes[c]}}}(jQuery);
//# sourceMappingURL=jquery.plugin.min.map
/* ------------------------------------------------------------------------
Class: prettyPopin
Use: Alternative to popups
Author: Stephane Caron (http://www.no-margin-for-errors.com)
Version: 1.3
------------------------------------------------------------------------- */
var _0=false;var _1=false;(function(a){a.fn.prettyPopin=function(b){b=jQuery.extend({modal:false,width:false,height:false,opacity:0.5,animationSpeed:'fast',followScroll:true,loader_path:'images/prettyPopin/loader.gif',callback:function(){}},b);function l(){if(_1)return;_1=true;a(window).scroll(function(){i()});a(window).resize(function(){i()})};l();return this.each(function(){var e;var f;var c;a(this).click(function(){m();n();a.get(a(this).attr('href'),function(d){a('.prettyPopin .prettyContent .prettyContent-container').html(d);e=b.width||a('.prettyPopin .prettyContent .prettyContent-container').width()+parseFloat(a('.prettyPopin .prettyContent .prettyContent-container').css('padding-left'))+parseFloat(a('.prettyPopin .prettyContent .prettyContent-container').css('padding-right'));a('.prettyPopin').width(e);f=b.height||a('.prettyPopin .prettyContent .prettyContent-container').height()+parseFloat(a('.prettyPopin .prettyContent .prettyContent-container').css('padding-top'))+parseFloat(a('.prettyPopin .prettyContent .prettyContent-container').css('padding-bottom'));a('.prettyPopin').height(f);a('.prettyPopin').height(45).width(45);o()});return false});var o=function(){var d=g();projectedTop=(a(window).height()/2)+d['scrollTop']-(f/2);if(projectedTop<0){projectedTop=10;_0=false}else{_0=b.followScroll};a('.prettyPopin').animate({'top':projectedTop,'left':(a(window).width()/2)+d['scrollLeft']-(e/2),'width':e,'height':f},b.animationSpeed,function(){j()})};var n=function(){a('body').append('<div class="prettyPopin"><a href="#" id="b_close" rel="close">Close</a><div class="prettyContent"><img src="'+b.loader_path+'" alt="Loading" class="loader" /><div class="prettyContent-container"></div></div></div>');c=a('.prettyPopin .prettyContent .prettyContent-container');a('.prettyPopin a[rel=close]:eq(0)').click(function(){h();return false});var d=g();a('.prettyPopin').width(45).height(45).css({'top':(a(window).height()/2)+d['scrollTop'],'left':(a(window).width()/2)+d['scrollLeft']}).hide().fadeIn(b.animationSpeed)};var m=function(){a('body').append('<div id="overlay"></div>');a('#overlay').css('height',a(document).height());a('#overlay').css('opacity',0).fadeTo(b.animationSpeed,b.opacity);if(!b.modal){a('#overlay').click(function(){h()})}};var j=function(){c.parent().find('.loader').hide();c.parent().parent().find('#b_close').show();c.fadeIn(function(){a(this).find('input[type=text]:first').trigger('focus');a('.prettyPopin a[rel=internal]').click(function(){$link=a(this);c.fadeOut(function(){c.parent().find('.loader').show();a.get($link.attr('href'),function(d){c.html(d);k(c)})});return false});a('.prettyPopin form').bind('submit',function(){$theForm=a(this);c.fadeOut(function(){c.parent().find('.loader').show();a.post($theForm.attr('action'),$theForm.serialize(),function(d){c.html(d);k(c)})});return false})});a('.prettyPopin a[rel=close]:gt(0)').click(function(){h();return false})};var k=function(){var d=g();if(!b.width)e=c.width()+parseFloat(c.css('padding-left'))+parseFloat(c.css('padding-right'));if(!b.height)f=c.height()+parseFloat(c.css('padding-top'))+parseFloat(c.css('padding-bottom'));projectedTop=(a(window).height()/2)+d['scrollTop']-(f/2);if(projectedTop<0){projectedTop=10;_0=false}else{_0=b.followScroll};a('.prettyPopin').animate({'top':projectedTop,'left':(a(window).width()/2)+d['scrollLeft']-(e/2),'width':e,'height':f},b.animationSpeed,function(){j()})};var h=function(){a('#overlay').fadeOut(b.animationSpeed,function(){a(this).remove()});a('.prettyPopin').fadeOut(b.animationSpeed,function(){a(this).remove();b.callback()})}});function i(){if(!_0)return;if(!a('.prettyPopin'))return;var d=g();if(a.browser.opera){windowHeight=window.innerHeight;windowWidth=window.innerWidth}else{windowHeight=a(window).height();windowWidth=a(window).width()};projectedTop=(a(window).height()/2)+d['scrollTop']-(a('.prettyPopin').height()/2);if(projectedTop<0){projectedTop=10;_0=false}else{_0=true};a('.prettyPopin').css({'top':projectedTop,'left':(a(window).width()/2)+d['scrollLeft']-(a('.prettyPopin').width()/2)})};function g(){scrollTop=window.pageYOffset||document.documentElement.scrollTop||0;scrollLeft=window.pageXOffset||document.documentElement.scrollLeft||0;return{scrollTop:scrollTop,scrollLeft:scrollLeft}}}})(jQuery);
This source diff could not be displayed because it is too large. You can view the blob instead.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- saved from url=(0088)https://check.abookcloud.com/acms/agtsales_ex/shop/quickReportManagement/searchResult/2/ -->
<html lang="ja-JP"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<!--meta http-equiv="X-UA-Compatible" content="IE=emulateIE7"-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="referrer" content="unsafe-url">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<title> コンテンツ管理システム
</title>
<link rel="stylesheet" type="text/css" href="./コンテンツ管理システム2_files/reset.css" media="all">
<link rel="stylesheet" type="text/css" href="./コンテンツ管理システム2_files/normal.css" media="all">
<link rel="stylesheet" type="text/css" href="./コンテンツ管理システム2_files/quickReport_lite_1.css" media="all">
<link rel="stylesheet" type="text/css" href="./コンテンツ管理システム2_files/jquery.datepick.css" media="all">
<link rel="stylesheet" type="text/css" href="./コンテンツ管理システム2_files/prettyPopin.css" media="all">
<link rel="stylesheet" type="text/css" href="./コンテンツ管理システム2_files/win.css" media="all">
<link rel="stylesheet" type="text/css" href="./コンテンツ管理システム2_files/fullcalendar.min.css" media="all">
<link rel="stylesheet" type="text/css" href="./コンテンツ管理システム2_files/forMenu.css" media="all">
<script type="text/javascript" src="./コンテンツ管理システム2_files/jquery-1.11.2.min.js.ダウンロード"></script>
<script type="text/javascript" src="./コンテンツ管理システム2_files/jquery-ui.js.ダウンロード"></script>
<script type="text/javascript" src="./コンテンツ管理システム2_files/script.js.ダウンロード"></script>
<script type="text/javascript" src="./コンテンツ管理システム2_files/jquery.datepick.js.ダウンロード"></script>
<script type="text/javascript" src="./コンテンツ管理システム2_files/jquery.datepick-ja.js.ダウンロード"></script>
<script type="text/javascript" src="./コンテンツ管理システム2_files/jquery.prettyPopin.js.ダウンロード"></script>
<script type="text/javascript" src="./コンテンツ管理システム2_files/groupTree.js.ダウンロード"></script>
<script type="text/javascript" src="./コンテンツ管理システム2_files/subwin.js.ダウンロード"></script>
<script type="text/javascript" src="./コンテンツ管理システム2_files/jquery.placeholder.min.js.ダウンロード"></script>
<script type="text/javascript" src="./コンテンツ管理システム2_files/moment.min.js.ダウンロード"></script>
<script type="text/javascript" src="./コンテンツ管理システム2_files/fullcalendar.min.js.ダウンロード"></script>
<script type="text/javascript" src="./コンテンツ管理システム2_files/fullcalendar.locale-all.js.ダウンロード"></script>
<script type="text/javascript" src="./コンテンツ管理システム2_files/tendina.js.ダウンロード"></script>
</head>
<body id="pagetop">
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
// 行が1行以上存在する場合
if (document.querySelector('.p-files__filename')) {
toggleFileInfo(1);
}
});
/**
* ファイル情報アコーディオン
*/
function toggleFileInfo(i) {
$('#filename_tri_' + i).toggleClass('c-tri--down');
// リビジョンのアコーディオンを全て閉じる
$('img[id^=excel_tri_' + i + '_]').removeClass('c-tri--down');
$('ul[id^=operation_' + i + '_]').removeClass('p-files--open');
// 簡易帳票1ファイル単位の開閉を切り替え
$('ul[id^=excel_' + i + '_]').toggleClass('p-files__excel--appear');
// 展開時の場合
if($('#excel_' + i + '_1').hasClass('p-files__excel--appear')) {
// 1番目のリビジョンを表示
$('#excel_tri_' + i + '_1').addClass('c-tri--down');
$('#operation_' + i + '_1').addClass('p-files--open');
}
}
/**
* リビジョン情報アコーディオン
*/
function toggleRevisionInfo(i, j) {
$('#excel_tri_' + i + '_' + j).toggleClass('c-tri--down');
$('#operation_' + i + '_' + j).toggleClass('p-files--open');
}
function submitForm() {
document.mainForm.submit();
return false;
}
function deleteResource(url){
if (!confirm("I/O 帳票を削除してもよろしいですか?")) { return false; }
location.href = url;
}
/**
* アコーディオン開閉状態付与
*/
function addAccordionState(url, queryExists) {
if (queryExists === undefined) {
queryExists = true;
}
var accordionState = "";
$('.c-tri--right.c-tri--down').each(function(index, element){
var id = $(element).attr('id');
if (id.indexOf('filename_tri_') === 0) {
accordionState += id.substring(13) + ',';
} else {
accordionState += id.substring(10) + ',';
}
});
if (accordionState !== "") {
var queryName = queryExists ? "&accordionState=" : "?accordionState=";
// アコーディオンの開閉状態をreload時に保持するため付与
return url + queryName + accordionState.slice(0, -1);
}
return url;
}
/**
* アコーディオン開閉状態復元
*/
function restoreAccordionState(accordionState) {
var states = accordionState.split(",");
for (var i = 0, len = states.length; i < len ; i++) {
var state = states[i];
if (state.indexOf("_") === -1) {
// 簡易帳票1ファイル単位の開閉を切り替え
$('#filename_tri_' + state).addClass('c-tri--down');
$('ul[id^=excel_' + state + '_]').addClass('p-files__excel--appear');
} else {
var index = state.split("_");
toggleRevisionInfo(index[0], index[1]);
}
}
}
</script>
<script>
$('.menu-trigger').on('click',function(){
if($(this).hasClass('active')){
$(this).removeClass('active');
$('nav2').removeClass('open');
$('.overlay').removeClass('open');
} else {
$(this).addClass('active');
$('nav2').addClass('open');
$('.overlay').addClass('open');
}
});
$('.overlay').on('click',function(){
if($(this).hasClass('open')){
$(this).removeClass('open');
$('.menu-trigger').removeClass('active');
$('nav2').removeClass('open');
}
});
$('.dropdown').tendina({
animate: true,
speed: 300,
openCallback: function($clickedEl) {
console.log($clickedEl);
},
closeCallback: function($clickedEl) {
console.log($clickedEl);
}
});
// メニュー開閉ボタンのアイコン回転
$('.menu-trigger').on('click',function(){
if($('.menu-trigger__icon').hasClass('active_tri')){
$('.menu-trigger__icon').removeClass('active_tri');
} else {
$('.menu-trigger__icon').addClass('active_tri');
}
});
// メニューの三角アイコン回転
$('#menu01').on('click',function(){
if($('this').hasClass('selected')){
$('this').removeClass('selected');
} else {
$('#menu01').addClass('selected');
}
});
// サブメニューを持たない項目を選択時、他のサブメニューを持つ項目を閉じ、選択状態をクリアする。
$('.hasChild').on('click',function(){
if($('.notHasChild').hasClass('selected')){
$('.notHasChild').removeClass('selected');
}
});
$('.notHasChild').on('click',function(){
if($('.hasChild').hasClass('selected')){
$('.hasChild').removeClass('selected');
$('.hasChild > ul').css('display','block');
}
});
$('.notHasChild').on('click',function(){
if($('.hasChild').hasClass('selected')){
$('.hasChild').removeClass('selected');
$('.hasChild > ul').css('display','block');
}
});
// サブメニューを持たない項目も、選択時に選択状態にする。
// その状態で他の項目が選択されると、選択を解除する。
$('.notHasChild').on('click',function(){
$('li.selected').removeClass('selected');
$(this).addClass('selected');
}
);
</script>
<div class="ui-dialog ui-widget ui-widget-content ui-corner-all ui-front ui-draggable ui-dialog-popup noTitleStuff" tabindex="-1" role="dialog" aria-describedby="popup_dialog" aria-labelledby="ui-id-1" style="position: fixed; height: auto; width: 1000px; top: 10px; left: 7px; display: block; z-index: 101;"><div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix ui-draggable-handle" style="display: none;"><span id="ui-id-1" class="ui-dialog-title"> </span><button type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-icon-only ui-dialog-titlebar-close" role="button" title="Close"><span class="ui-button-icon-primary ui-icon ui-icon-closethick"></span><span class="ui-button-text">Close</span></button></div><div class="ifrm-container ui-dialog-content ui-widget-content" id="popup_dialog" style="width: auto; min-height: 0px; max-height: none; height: 800px;"><iframe class="ifrm" id="popupUrlIfrm" src="./コンテンツ管理システム2_files/saved_resource.html"></iframe></div></div><div class="ui-widget-overlay ui-front" style="z-index: 100; background: rgb(204, 204, 204);"></div></body></html>
\ No newline at end of file
/* menu */
/* menu */
.menu-container {
display: block;
height: 100%;
width: 350px;
/*
z-index: 70;
*/
position: absolute;
top: 80px;
left: 0;
overflow: hidden;
-ms-overflow-style: none;
}
.menu-container::-webkit-scrollbar {
display: none;
}
.menu-iframe {
overflow: hidden;
-ms-overflow-style: none;
height: 100%;
}
html {
font-size: 62.5% !important;
}
/*
body {
font-family: 'Noto Sans JP','Avenir','Helvetica Neue','Helvetica','Arial',sans-serif;
font-weight: 400;
font-style: normal;
font-size: 1.6em;
line-height: 1;
position: relative;
height: 100vh;
width: 300px;
}
*/
/*
a {
text-decoration: none;
}
*/
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: "";
content: none;
}
/*
table {
border-collapse: collapse;
border-spacing: 0;
}
*/
/*
* {
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
}
*/
.dropdown {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 244px;
background-color: #2A5772;
font-family: "Montserrat", sans-serif;
padding-top: 80px;
font-size: 12px;
}
.dropdown li {
position: relative;
}
.dropdown li.selected {
background-color: #F8F8F8;
color: #2A5772;
}
.dropdown li.selected a {
color: #2A5772;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
}
.dropdown li.selected > ul > li > a {
color: #fff;
padding-left: 92px;
}
.dropdown li a {
display: block;
/*
width: 100%;
*/
padding: 14px 0 14px 40px;
text-decoration: none;
text-transform: uppercase;
color: #fff;
position: relative;
font-size: 1.6rem;
font-weight: 700;
transition: all .3s;
}
.dropdown > li > ul > li > a {
padding-left: 64px !important;
background: #616C7A;
}
.dropdown li > ul li {
color: #fff;
}
.dropdown li > ul li a {
padding-left: 48px;
color: #fff;
transition: all .0s;
}
.dropdown li > ul li a:hover {
color: #90A4AE;
}
.dropdown li > ul li a:active {
color: #fff;
}
.dropdown li > ul li > ul li {
padding: 10px 0 10px 30px;
}
.dropdown li > ul li > ul li a {
color: #fff;
font-size: 12px;
text-transform: none;
padding: 0;
}
.selected li:nth-child(2) {
background: #616C7A;
color: #fff;
}
.selected li:nth-child(2):hover {
color: #90A4AE;
}
.selected li:nth-child(3) {
background: #616C7A;
color: #fff;
}
.selected li:nth-child(3):hover {
color: #90A4AE;
}
.selected li:first-child {
background: #616C7A;
color: #fff;
}
.selected li:first-child:hover {
color: #90A4AE;
}
.dropdown li.selected:first-child a {
color: #2A5772;
}
.dropdown li.selected:first-child ul a {
color: #fff;
}
.p-sidemenu {
position: relative;
height: 100vh;
width: 244px;
}
.p-sidemenu__sidebtn {
width: 44px;
height: 120px;
background-color: #2A5772;
color: #fff;
display: flex;
justify-content: center;
position: absolute;
left: 244px;
top: 64px;
}
.wrapper_menu {
height: 100%;
width: 244px;
position: relative;
display: block;
}
/*
main {
height: 100%;
min-height: 100vh;
width: 244px;
transition: all .3s;
position: absolute;
}
*/
.menu-trigger {
width: 56px;
height: 120px;
cursor: pointer;
position: fixed;
top: 144px;
left: 0px;
z-index: 100;
transform: translateX(0);
transition: transform .3s;
background-color: #2A5772;
border-radius: 6px;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
display: flex;
justify-content: center;
align-items: center;
}
.menu-trigger__icon {
height: 32px;
width: auto;
transform: rotate(0deg);
transition: all .3s;
}
.active_tri {
transform: rotate(180deg) !important;
transition: all .3s;
}
.menu-trigger.active {
transform: translateX(243px);
}
.menu-trigger span {
display: inline-block;
box-sizing: border-box;
position: absolute;
left: 0;
width: 100%;
height: 4px;
background-color: #000;
}
.menu-trigger.active span {
background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
transform: translateY(12px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
top: 12px;
}
.menu-trigger.active span:nth-of-type(2) {
opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
transform: translateY(-12px) rotate(45deg);
}
nav2 {
width: 244px;
height: 100%;
padding-top: 100px;
background-color: #2A5772;
position: fixed;
top: 0;
left: 0;
z-index: 10;
transform: translate(-250px);
transition: all .3s;
}
nav2.open {
transform: translateZ(0);
}
nav2 li {
color: #fff;
text-align: left;
}
nav2 ul {
list-style: none;
}
.navwrapper {
width: 244px;
height: 100%;
position: relative;
display: block;
-webkit-font-smoothing: antialiased;
}
.menu-ic {
fill: #fff;
height: 24px;
display: inline-block;
vertical-align: middle;
margin-right: 4px;
}
nav2 li.selected > a > .menu-ic {
fill: #2A5772;
}
.u-menu-noChild {
padding-left: 16px;
}
.menu-tri {
fill: #fff;
margin-right: 4px;
display: inline-block;
vertical-align: middle;
transition: all .3s;
}
#menu-tri01 {
transform: rotate(0);
transition: all .3s;
}
nav2 li.selected > a > .menu-tri {
fill: #2A5772 !important;
transform: rotate(90deg) !important;
}
nav2 li.selected > a > #menu-tri01.active_menutri {
transform: rotate(90deg) !important;
}
nav2 li.hasChild > ul {
display: none !important;
}
nav2 li.hasChild.selected > ul {
display: block !important;
}
.menuobject:hover {
background: #90A4AE;
}
/* header */
.section-header_lite {
width: 100%;
background-color: #2A5772;
height: 80px;
padding: 0 56px;
display: flex;
align-items: center;
margin: 0 auto;
box-sizing: border-box;
}
.iu-header-box_lite {
position: relative;
height: 100%;
margin-left: auto;
margin-right: auto;
width: 100%;
max-width: 1808px;
display: flex;
justify-content: space-between;
margin-top: 32px;
margin-bottom: 32px;
box-sizing: border-box;
}
.iu-box-header-left_lite {
float: left;
height: 100%;
position: relative;
width: 30%;
/*
width: 65%;
*/
display: flex;
justify-content: flex-start;
align-items: center;
}
.iu-box-header-right_lite {
width: auto;
display: flex;
align-items: center;
flex-direction: row-reverse;
justify-content: space-between;
position: relative;
}
.text-logout_lite {
font-size: 1.4rem;
font-weight: 700;
height: 32px;
width: 144px;
background-color: #fff;
color: #2A5772;
display: flex;
justify-content: center;
align-items: center;
border-radius: 6px;
}
.text-logout_lite:hover, .a-inner-link_lite:hover {
color: #90A4AE;
}
.header-button_lite {
position: relative;
margin-left: 24px;
}
.a-inner-link_lite {
position: relative;
}
.text-loginId_lite {
font-weight: 300;
vertical-align: middle;
color: #fff;
float: left;
}
/* footer */
footer_lite {
/*
background-color: #F8F8F8;
*/
background-color: transparent;
height: 80px;
width: 100%;
position: absolute;
bottom: 0;
color: #616C7A;
}
footer_lite .iu-header-box_lite {
margin: 0 auto;
color: #616C7A;
}
.text-footer_lite {
font-size: 14px;
color: #616C7A;
height: 75%;
margin-top: 25px;
text-align: center;
}
/* page */
.u-center {
display: block;
margin: 0 auto;
}
.iu-header-box_bottom_page {
position: relative;
height: 100%;
margin-left: auto;
margin-right: auto;
width: 100%;
max-width: 1808px;
display: flex;
justify-content: space-between;
margin-top: 32px;
margin-bottom: 32px;
box-sizing: border-box;
}
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImZvck1lbnUuc2NzcyIsImZvck1lbnUuY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0VBQ0UsY0FBYztFQUNkLFlBQVk7RUFDWixZQUFXO0VBQ1gsV0FBVztFQUNYLGtCQUFrQjtFQUNsQixTQUFRO0VBQ1IsT0FBTztFQUNQLGdCQUFnQjtFQUNoQix3QkFBd0I7QUNDMUI7O0FERUE7RUFDRSxhQUFZO0FDQ2Q7O0FERUE7RUFDRSxnQkFBZ0I7RUFDaEIsd0JBQXdCO0VBQ3hCLFlBQVc7QUNDYiIsImZpbGUiOiJmb3JNZW51LmNzcyIsInNvdXJjZXNDb250ZW50IjpbIi5tZW51LWNvbnRhaW5lcntcbiAgZGlzcGxheTogYmxvY2s7XG4gIGhlaWdodDogMTAwJTtcbiAgd2lkdGg6MzUwcHg7XG4gIHotaW5kZXg6IDcwO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHRvcDo4MHB4O1xuICBsZWZ0OiAwO1xuICBvdmVyZmxvdzogaGlkZGVuO1xuICAtbXMtb3ZlcmZsb3ctc3R5bGU6IG5vbmU7XG59XG5cbi5tZW51LWNvbnRhaW5lcjo6LXdlYmtpdC1zY3JvbGxiYXIge1xuICBkaXNwbGF5Om5vbmU7XG59XG5cbi5tZW51LWlmcmFtZXtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgLW1zLW92ZXJmbG93LXN0eWxlOiBub25lO1xuICBoZWlnaHQ6MTAwJTtcbn0iLCIubWVudS1jb250YWluZXIge1xuICBkaXNwbGF5OiBibG9jaztcbiAgaGVpZ2h0OiAxMDAlO1xuICB3aWR0aDogMzUwcHg7XG4gIHotaW5kZXg6IDcwO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHRvcDogODBweDtcbiAgbGVmdDogMDtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgLW1zLW92ZXJmbG93LXN0eWxlOiBub25lO1xufVxuXG4ubWVudS1jb250YWluZXI6Oi13ZWJraXQtc2Nyb2xsYmFyIHtcbiAgZGlzcGxheTogbm9uZTtcbn1cblxuLm1lbnUtaWZyYW1lIHtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgLW1zLW92ZXJmbG93LXN0eWxlOiBub25lO1xuICBoZWlnaHQ6IDEwMCU7XG59XG4iXX0= */
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
/* http://keith-wood.name/datepick.html
/* http://keith-wood.name/datepick.html
Japanese localisation for jQuery Datepicker.
Written by Kentaro SATO (kentaro@ranvis.com). */
(function($) {
$.datepicker.regional['ja'] = {
monthNames: ['1月','2月','3月','4月','5月','6月',
'7月','8月','9月','10月','11月','12月'],
monthNamesShort: ['1月','2月','3月','4月','5月','6月',
'7月','8月','9月','10月','11月','12月'],
dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'],
dayNamesShort: ['日','月','火','水','木','金','土'],
dayNamesMin: ['日','月','火','水','木','金','土'],
dateFormat: 'yy/mm/dd', firstDay: 0,
prevText: '&#x3c;前', prevStatus: '前月を表示します',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '前年を表示します',
nextText: '次&#x3e;', nextStatus: '翌月を表示します',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '翌年を表示します',
currentText: '今日', currentStatus: '今月を表示します',
todayText: '今月', todayStatus: '今月を表示します',
clearText: 'クリア', clearStatus: '日付をクリアします',
closeText: '閉じる', closeStatus: '変更せずに閉じます',
yearStatus: '表示する年を変更します', monthStatus: '表示する月を変更します',
weekText: '週', weekStatus: '暦週で第何週目かを表します',
dayStatus: 'Md日(D)', defaultStatus: '日付を選択します',
isRTL: false,
showMonthAfterYear: true,
yearSuffix: '年'
};
$.datepicker.setDefaults($.datepicker.regional['ja']);
})(jQuery);
/* Main style sheet for jQuery Keypad v2.0.0. */
/* Main style sheet for jQuery Keypad v2.0.0. */
button.keypad-trigger {
width: 25px;
padding: 0px;
}
img.keypad-trigger {
margin: 2px;
vertical-align: middle;
}
.keypad-popup, .keypad-inline, .keypad-key, .keypad-special {
font-family: Arial,Helvetica,sans-serif;
font-size: 14px;
}
.keypad-popup {
display: none;
z-index: 999999;
margin: 0;
padding: 0;
width: 280px;
height: 300px;
background-color: #fff;
color: #000;
border: 1px solid #888;
-moz-border-radius: 0.25em;
-webkit-border-radius: 0.25em;
border-radius: 0.25em;
}
.keypad-keyentry {
display: none;
}
.keypad-inline {
background-color: #fff;
border: 1px solid #888;
-moz-border-radius: 0.25em;
-webkit-border-radius: 0.25em;
border-radius: 0.25em;
}
.keypad-disabled {
position: absolute;
z-index: 100;
background-color: white;
opacity: 0.5;
filter: alpha(opacity=50);
}
.keypad-rtl {
direction: rtl;
}
.keypad-prompt {
clear: both;
text-align: center;
}
.keypad-prompt.ui-widget-header {
margin: 0.125em;
}
.keypad-row {
width: 100%;
}
.keypad-space {
display: inline-block;
margin: 0.125em;
width: 2em;
}
.keypad-half-space {
display: inline-block;
margin: 0.125em 0.0625em;
width: 1em;
}
.keypad-key, .keypad-special {
margin: 0.125em;
padding: 0em;
width: 5em;
height: 5em;
background-color: #f4f4f4;
-moz-border-radius: 0.25em;
-webkit-border-radius: 0.25em;
border-radius: 0.25em;
text-align: center;
cursor: pointer;
}
.keypad-key[disabled] {
border: 0.125em outset;
}
.keypad-key-down {
}
.keypad-special {
width: 4.25em;
}
.keypad-spacebar {
width: 13.25em;
}
.keypad-tab {
width: 2em;
}
.keypad-clear, .keypad-back, .keypad-close, .keypad-shift {
color: #fff;
font-weight: bold;
}
.keypad-clear {
background-color: #a00;
}
.keypad-back {
background-color: #00a;
}
.keypad-close {
background-color: #0a0;
}
.keypad-shift {
background-color: #0aa;
}
/*! http://mths.be/placeholder v2.0.7 by @mathias */
/*! http://mths.be/placeholder v2.0.7 by @mathias */
;(function(f,h,$){var a='placeholder' in h.createElement('input'),d='placeholder' in h.createElement('textarea'),i=$.fn,c=$.valHooks,k,j;if(a&&d){j=i.placeholder=function(){return this};j.input=j.textarea=true}else{j=i.placeholder=function(){var l=this;l.filter((a?'textarea':':input')+'[placeholder]').not('.placeholder').bind({'focus.placeholder':b,'blur.placeholder':e}).data('placeholder-enabled',true).trigger('blur.placeholder');return l};j.input=a;j.textarea=d;k={get:function(m){var l=$(m);return l.data('placeholder-enabled')&&l.hasClass('placeholder')?'':m.value},set:function(m,n){var l=$(m);if(!l.data('placeholder-enabled')){return m.value=n}if(n==''){m.value=n;if(m!=h.activeElement){e.call(m)}}else{if(l.hasClass('placeholder')){b.call(m,true,n)||(m.value=n)}else{m.value=n}}return l}};a||(c.input=k);d||(c.textarea=k);$(function(){$(h).delegate('form','submit.placeholder',function(){var l=$('.placeholder',this).each(b);setTimeout(function(){l.each(e)},10)})});$(f).bind('beforeunload.placeholder',function(){$('.placeholder').each(function(){this.value=''})})}function g(m){var l={},n=/^jQuery\d+$/;$.each(m.attributes,function(p,o){if(o.specified&&!n.test(o.name)){l[o.name]=o.value}});return l}function b(m,n){var l=this,o=$(l);if(l.value==o.attr('placeholder')&&o.hasClass('placeholder')){if(o.data('placeholder-password')){o=o.hide().next().show().attr('id',o.removeAttr('id').data('placeholder-id'));if(m===true){return o[0].value=n}o.focus()}else{l.value='';o.removeClass('placeholder');l==h.activeElement&&l.select()}}}function e(){var q,l=this,p=$(l),m=p,o=this.id;if(l.value==''){if(l.type=='password'){if(!p.data('placeholder-textinput')){try{q=p.clone().attr({type:'text'})}catch(n){q=$('<input>').attr($.extend(g(this),{type:'text'}))}q.removeAttr('name').data({'placeholder-password':true,'placeholder-id':o}).bind('focus.placeholder',b);p.data({'placeholder-textinput':q,'placeholder-id':o}).before(q)}p=p.removeAttr('id').hide().prev().attr('id',o).show()}p.addClass('placeholder');p[0].value=p.attr('placeholder')}else{p.removeClass('placeholder')}}}(this,document,jQuery));
\ No newline at end of file
/*! Simple JavaScript Inheritance
/*! Simple JavaScript Inheritance
* By John Resig http://ejohn.org/
* MIT Licensed.
*/
!function(){"use strict";var a=!1;window.JQClass=function(){},JQClass.classes={},JQClass.extend=function b(c){function d(){!a&&this._init&&this._init.apply(this,arguments)}var e=this.prototype;a=!0;var f=new this;a=!1;for(var g in c)if("function"==typeof c[g]&&"function"==typeof e[g])f[g]=function(a,b){return function(){var c=this._super;this._super=function(b){return e[a].apply(this,b||[])};var d=b.apply(this,arguments);return this._super=c,d}}(g,c[g]);else if("object"==typeof c[g]&&"object"==typeof e[g]&&"defaultOptions"===g){var h,i=e[g],j=c[g],k={};for(h in i)k[h]=i[h];for(h in j)k[h]=j[h];f[g]=k}else f[g]=c[g];return d.prototype=f,d.prototype.constructor=d,d.extend=b,d}}(),/*! Abstract base class for collection plugins v1.0.2.
Written by Keith Wood (wood.keith{at}optusnet.com.au) December 2013.
Licensed under the MIT license (http://keith-wood.name/licence.html). */
function($){"use strict";function camelCase(a){return a.replace(/-([a-z])/g,function(a,b){return b.toUpperCase()})}JQClass.classes.JQPlugin=JQClass.extend({name:"plugin",defaultOptions:{},regionalOptions:{},deepMerge:!0,_getMarker:function(){return"is-"+this.name},_init:function(){$.extend(this.defaultOptions,this.regionalOptions&&this.regionalOptions[""]||{});var a=camelCase(this.name);$[a]=this,$.fn[a]=function(b){var c=Array.prototype.slice.call(arguments,1),d=this,e=this;return this.each(function(){if("string"==typeof b){if("_"===b[0]||!$[a][b])throw"Unknown method: "+b;var f=$[a][b].apply($[a],[this].concat(c));if(f!==d&&void 0!==f)return e=f,!1}else $[a]._attach(this,b)}),e}},setDefaults:function(a){$.extend(this.defaultOptions,a||{})},_attach:function(a,b){if(a=$(a),!a.hasClass(this._getMarker())){a.addClass(this._getMarker()),b=$.extend(this.deepMerge,{},this.defaultOptions,this._getMetadata(a),b||{});var c=$.extend({name:this.name,elem:a,options:b},this._instSettings(a,b));a.data(this.name,c),this._postAttach(a,c),this.option(a,b)}},_instSettings:function(a,b){return{}},_postAttach:function(a,b){},_getMetadata:function(elem){try{var data=elem.data(this.name.toLowerCase())||"";data=data.replace(/(\\?)'/g,function(a,b){return b?"'":'"'}).replace(/([a-zA-Z0-9]+):/g,function(a,b,c){var d=data.substring(0,c).match(/"/g);return d&&d.length%2!==0?b+":":'"'+b+'":'}).replace(/\\:/g,":"),data=$.parseJSON("{"+data+"}");for(var key in data)if(data.hasOwnProperty(key)){var value=data[key];"string"==typeof value&&value.match(/^new Date\(([-0-9,\s]*)\)$/)&&(data[key]=eval(value))}return data}catch(a){return{}}},_getInst:function(a){return $(a).data(this.name)||{}},option:function(a,b,c){a=$(a);var d=a.data(this.name),e=b||{};return!b||"string"==typeof b&&"undefined"==typeof c?(e=(d||{}).options,e&&b?e[b]:e):void(a.hasClass(this._getMarker())&&("string"==typeof b&&(e={},e[b]=c),this._optionsChanged(a,d,e),$.extend(d.options,e)))},_optionsChanged:function(a,b,c){},destroy:function(a){a=$(a),a.hasClass(this._getMarker())&&(this._preDestroy(a,this._getInst(a)),a.removeData(this.name).removeClass(this._getMarker()))},_preDestroy:function(a,b){}}),$.JQPlugin={createPlugin:function(a,b){"object"==typeof a&&(b=a,a="JQPlugin"),a=camelCase(a);var c=camelCase(b.name);JQClass.classes[c]=JQClass.classes[a].extend(b),new JQClass.classes[c]}}}(jQuery);
//# sourceMappingURL=jquery.plugin.min.map
\ No newline at end of file
/* ------------------------------------------------------------------------
/* ------------------------------------------------------------------------
Class: prettyPopin
Use: Alternative to popups
Author: Stephane Caron (http://www.no-margin-for-errors.com)
Version: 1.3
------------------------------------------------------------------------- */
var _0=false;var _1=false;(function(a){a.fn.prettyPopin=function(b){b=jQuery.extend({modal:false,width:false,height:false,opacity:0.5,animationSpeed:'fast',followScroll:true,loader_path:'images/prettyPopin/loader.gif',callback:function(){}},b);function l(){if(_1)return;_1=true;a(window).scroll(function(){i()});a(window).resize(function(){i()})};l();return this.each(function(){var e;var f;var c;a(this).click(function(){m();n();a.get(a(this).attr('href'),function(d){a('.prettyPopin .prettyContent .prettyContent-container').html(d);e=b.width||a('.prettyPopin .prettyContent .prettyContent-container').width()+parseFloat(a('.prettyPopin .prettyContent .prettyContent-container').css('padding-left'))+parseFloat(a('.prettyPopin .prettyContent .prettyContent-container').css('padding-right'));a('.prettyPopin').width(e);f=b.height||a('.prettyPopin .prettyContent .prettyContent-container').height()+parseFloat(a('.prettyPopin .prettyContent .prettyContent-container').css('padding-top'))+parseFloat(a('.prettyPopin .prettyContent .prettyContent-container').css('padding-bottom'));a('.prettyPopin').height(f);a('.prettyPopin').height(45).width(45);o()});return false});var o=function(){var d=g();projectedTop=(a(window).height()/2)+d['scrollTop']-(f/2);if(projectedTop<0){projectedTop=10;_0=false}else{_0=b.followScroll};a('.prettyPopin').animate({'top':projectedTop,'left':(a(window).width()/2)+d['scrollLeft']-(e/2),'width':e,'height':f},b.animationSpeed,function(){j()})};var n=function(){a('body').append('<div class="prettyPopin"><a href="#" id="b_close" rel="close">Close</a><div class="prettyContent"><img src="'+b.loader_path+'" alt="Loading" class="loader" /><div class="prettyContent-container"></div></div></div>');c=a('.prettyPopin .prettyContent .prettyContent-container');a('.prettyPopin a[rel=close]:eq(0)').click(function(){h();return false});var d=g();a('.prettyPopin').width(45).height(45).css({'top':(a(window).height()/2)+d['scrollTop'],'left':(a(window).width()/2)+d['scrollLeft']}).hide().fadeIn(b.animationSpeed)};var m=function(){a('body').append('<div id="overlay"></div>');a('#overlay').css('height',a(document).height());a('#overlay').css('opacity',0).fadeTo(b.animationSpeed,b.opacity);if(!b.modal){a('#overlay').click(function(){h()})}};var j=function(){c.parent().find('.loader').hide();c.parent().parent().find('#b_close').show();c.fadeIn(function(){a(this).find('input[type=text]:first').trigger('focus');a('.prettyPopin a[rel=internal]').click(function(){$link=a(this);c.fadeOut(function(){c.parent().find('.loader').show();a.get($link.attr('href'),function(d){c.html(d);k(c)})});return false});a('.prettyPopin form').bind('submit',function(){$theForm=a(this);c.fadeOut(function(){c.parent().find('.loader').show();a.post($theForm.attr('action'),$theForm.serialize(),function(d){c.html(d);k(c)})});return false})});a('.prettyPopin a[rel=close]:gt(0)').click(function(){h();return false})};var k=function(){var d=g();if(!b.width)e=c.width()+parseFloat(c.css('padding-left'))+parseFloat(c.css('padding-right'));if(!b.height)f=c.height()+parseFloat(c.css('padding-top'))+parseFloat(c.css('padding-bottom'));projectedTop=(a(window).height()/2)+d['scrollTop']-(f/2);if(projectedTop<0){projectedTop=10;_0=false}else{_0=b.followScroll};a('.prettyPopin').animate({'top':projectedTop,'left':(a(window).width()/2)+d['scrollLeft']-(e/2),'width':e,'height':f},b.animationSpeed,function(){j()})};var h=function(){a('#overlay').fadeOut(b.animationSpeed,function(){a(this).remove()});a('.prettyPopin').fadeOut(b.animationSpeed,function(){a(this).remove();b.callback()})}});function i(){if(!_0)return;if(!a('.prettyPopin'))return;var d=g();if(a.browser.opera){windowHeight=window.innerHeight;windowWidth=window.innerWidth}else{windowHeight=a(window).height();windowWidth=a(window).width()};projectedTop=(a(window).height()/2)+d['scrollTop']-(a('.prettyPopin').height()/2);if(projectedTop<0){projectedTop=10;_0=false}else{_0=true};a('.prettyPopin').css({'top':projectedTop,'left':(a(window).width()/2)+d['scrollLeft']-(a('.prettyPopin').width()/2)})};function g(){scrollTop=window.pageYOffset||document.documentElement.scrollTop||0;scrollLeft=window.pageXOffset||document.documentElement.scrollLeft||0;return{scrollTop:scrollTop,scrollLeft:scrollLeft}}}})(jQuery);
/*エディタ用のスタイルです。*/
/*エディタ用のスタイルです。*/
/*マックでもウィンドウズでも無い場合にこのスタイルが適用されます。*/
/*font size ss*/
.ss {
font-size:60%;
line-height:1.5em;
}
/*font size s*/
.s {
font-size:78%;
line-height:1.6em;
}
/*font size m*/
.m {
font-size:86%;
line-height:1.6em;
}
/*font size L*/
.L {
font-size:108%;
line-height:1.56em;
}
/*font size LL*/
.LL {
font-size:114%;
line-height:1.5em;
}
#overlay{background:#000;position:absolute;top:0;left:0;z-index:10000;width:100%}.prettyPopin{display:none;overflow:hidden;position:absolute;z-index:11000;top:50%;left:50%;background:url(../images/popinLeft.gif) bottom left no-repeat}.prettyPopin a#b_close{display:none;position:absolute;z-index:2;top:10px;right:13px;width:41px;height:9px;text-indent:-10000px;background:url(../images/b_close.gif) bottom left no-repeat}.prettyPopin .prettyContent{position:relative;width:100%;height:100%;font-size:1.2em;background:url(../images/popinRight.gif) bottom right no-repeat}.prettyPopin .prettyContent .prettyContent-container{display:none;padding:20px 15px 15px 15px}.prettyPopin .prettyContent .loader{position:absolute;top:50%;left:50%;margin:-14px 0 0 -14px}
#overlay{background:#000;position:absolute;top:0;left:0;z-index:10000;width:100%}.prettyPopin{display:none;overflow:hidden;position:absolute;z-index:11000;top:50%;left:50%;background:url(../images/popinLeft.gif) bottom left no-repeat}.prettyPopin a#b_close{display:none;position:absolute;z-index:2;top:10px;right:13px;width:41px;height:9px;text-indent:-10000px;background:url(../images/b_close.gif) bottom left no-repeat}.prettyPopin .prettyContent{position:relative;width:100%;height:100%;font-size:1.2em;background:url(../images/popinRight.gif) bottom right no-repeat}.prettyPopin .prettyContent .prettyContent-container{display:none;padding:20px 15px 15px 15px}.prettyPopin .prettyContent .loader{position:absolute;top:50%;left:50%;margin:-14px 0 0 -14px}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
HTML {
HTML {
background: rgb(255, 255, 255); color: rgb(0, 0, 0);
}
BODY {
margin: 0px; padding: 0px;
}
DIV {
margin: 0px; padding: 0px;
}
DL {
margin: 0px; padding: 0px;
}
DT {
margin: 0px; padding: 0px;
}
DD {
margin: 0px; padding: 0px;
}
UL {
margin: 0px; padding: 0px;
}
OL {
margin: 0px; padding: 0px;
}
LI {
margin: 0px; padding: 0px;
}
H1 {
margin: 0px; padding: 0px;
}
H2 {
margin: 0px; padding: 0px;
}
H3 {
margin: 0px; padding: 0px;
}
H4 {
margin: 0px; padding: 0px;
}
H5 {
margin: 0px; padding: 0px;
}
H6 {
margin: 0px; padding: 0px;
}
PRE {
margin: 0px; padding: 0px;
}
CODE {
margin: 0px; padding: 0px;
}
FORM {
margin: 0px; padding: 0px;
}
FIELDSET {
margin: 0px; padding: 0px;
}
LEGEND {
margin: 0px; padding: 0px;
}
INPUT {
margin: 0px; padding: 0px;
}
TEXTAREA {
margin: 0px; padding: 0px;
}
P {
margin: 0px; padding: 0px;
}
BLOCKQUOTE {
margin: 0px; padding: 0px;
}
TH {
margin: 0px; padding: 0px;
}
TD {
margin: 0px; padding: 0px;
}
TABLE {
border-collapse: collapse; border-spacing: 0;
}
FIELDSET {
border: 0px;
}
IMG {
border: 0px;
}
ADDRESS {
font-style: normal; font-weight: normal;
}
CAPTION {
font-style: normal; font-weight: normal;
}
CITE {
font-style: normal; font-weight: normal;
}
CODE {
font-style: normal; font-weight: normal;
}
DFN {
font-style: normal; font-weight: normal;
}
EM {
font-style: normal; font-weight: normal;
}
TH {
font-style: normal; font-weight: normal;
}
VAR {
font-style: normal; font-weight: normal;
}
LI {
list-style: none;
}
CAPTION {
text-align: left;
}
TH {
text-align: left;
}
H1 {
font-size: 100%; font-weight: normal;
}
H2 {
font-size: 100%; font-weight: normal;
}
H3 {
font-size: 100%; font-weight: normal;
}
H4 {
font-size: 100%; font-weight: normal;
}
H5 {
font-size: 100%; font-weight: normal;
}
H6 {
font-size: 100%; font-weight: normal;
}
Q::before {
content: "";
}
Q::after {
content: "";
}
ABBR {
border: 0px; font-variant: normal;
}
ACRONYM {
border: 0px; font-variant: normal;
}
SUP {
vertical-align: text-top;
}
SUB {
vertical-align: text-bottom;
}
INPUT {
font-family: inherit; font-size: inherit; font-weight: inherit;
}
TEXTAREA {
font-family: inherit; font-size: inherit; font-weight: inherit;
}
SELECT {
font-family: inherit; font-size: inherit; font-weight: inherit;
}
INPUT {
}
TEXTAREA {
}
SELECT {
}
LEGEND {
color: rgb(0, 0, 0);
}
DEL {
text-decoration: none;
}
INS {
text-decoration: none;
}
.test10 {
font-size: 77%;
}
.test11 {
font-size: 85%;
}
.test12 {
font-size: 93%;
}
.test13 {
font-size: 100%;
}
.test14 {
font-size: 108%;
}
.test15 {
font-size: 116%;
}
.test16 {
font-size: 123.1%;
}
.test17 {
font-size: 131%;
}
.test18 {
font-size: 138.5%;
}
.test19 {
font-size: 146.5%;
}
.test20 {
font-size: 153.9%;
}
.test21 {
font-size: 161.6%;
}
.test22 {
font-size: 167%;
}
.test23 {
font-size: 174%;
}
.test24 {
font-size: 182%;
}
.test25 {
font-size: 189%;
}
.test26 {
font-size: 197%;
}
This source diff could not be displayed because it is too large. You can view the blob instead.
//名前空間用のオブジェクトを用意する
var SUBWIN = {};
//サブウィンドウを開く(アカウント)
SUBWIN.subWinArray = {};
$(document).ready(function(){
//画面を離れる場合は開いているウィンドウを閉じる
window.onbeforeunload = function(){
for ( var key in SUBWIN.subWinArray ) {
if(SUBWIN.subWinArray[key] != null && SUBWIN.subWinArray[key].closed == false){
SUBWIN.subWinArray[key].close();
}
}
};
});
SUBWIN.openSubWindow = function(winUrl, winName, winOpt, winWidth, winHeight) {
if (winHeight > window.innerHeight) {
winHeight = window.innerHeight * 0.9;
}
//既に開いている場合は閉じる
for ( var key in SUBWIN.subWinArray ) {
if(SUBWIN.subWinArray[key] != null && SUBWIN.subWinArray[key].closed == false){
SUBWIN.subWinArray[key].close();
}
}
if (winWidth) {
if (window.screen.width > winWidth){
winOpt+=", left="+(window.screen.width-winWidth)/2;
}
winOpt+=", width="+winWidth;
}
if (winHeight) {
if (window.screen.height > winHeight){
winOpt+=", top="+(window.screen.height-winHeight)/2;
}
winOpt+=", height="+winHeight;
}
SUBWIN.subWinArray[winName] = window.open(winUrl,winName,winOpt);
SUBWIN.subWinArray[winName].focus();
};
// サブウィンドウを閉じる
SUBWIN.closeSubWindow = function() {
for ( var key in SUBWIN.subWinArray ) {
if(SUBWIN.subWinArray[key] != null && SUBWIN.subWinArray[key].closed == false){
SUBWIN.subWinArray[key].close();
}
}
}
\ No newline at end of file
/*
Tendina jQuery plugin v0.11.1
Copyright (c) 2015 Ivan Prignano
Released under the MIT License
*/
(function() {
var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },
__slice = [].slice;
(function($, window) {
var Tendina;
Tendina = (function() {
Tendina.prototype.defaults = {
animate: true,
speed: 300,
onHover: false,
hoverDelay: 0,
activeMenu: null
};
function Tendina(el, options) {
this._eventHandler = __bind(this._eventHandler, this);
this.options = $.extend({}, this.defaults, options);
this.$el = $(el);
this.elSelector = this._getSelector(this.$el);
this.$el.addClass('tendina');
this.linkSelector = "" + this.elSelector + " a";
this.$listElements = $(this.linkSelector).parent('li');
this._hideSubmenus();
this.mouseEvent = this.options.onHover === true ? 'mouseenter.tendina' : 'click.tendina';
this._bindEvents();
if (this.options.activeMenu !== null) {
this._openActiveMenu(this.options.activeMenu);
}
}
Tendina.prototype._bindEvents = function() {
return $(document).on(this.mouseEvent, this.linkSelector, this._eventHandler);
};
Tendina.prototype._unbindEvents = function() {
return $(document).off(this.mouseEvent);
};
Tendina.prototype._getSelector = function(el) {
var elId, firstClass, _ref;
firstClass = (_ref = $(el).attr('class')) != null ? _ref.split(' ')[0] : void 0;
elId = $(el).attr('id');
if (elId !== void 0) {
return "#" + elId;
} else {
return "." + firstClass;
}
};
Tendina.prototype._isFirstLevel = function(targetEl) {
if ($(targetEl).parent().parent().hasClass('tendina')) {
return true;
}
};
Tendina.prototype._eventHandler = function(event) {
var targetEl;
targetEl = event.currentTarget;
if (this._hasChildren(targetEl) && this._IsChildrenHidden(targetEl)) {
event.preventDefault();
if (this.options.onHover) {
return setTimeout((function(_this) {
return function() {
if ($(targetEl).is(':hover')) {
return _this._openSubmenu(targetEl);
}
};
})(this), this.options.hoverDelay);
} else {
return this._openSubmenu(targetEl);
}
} else if (this._isCurrentlyOpen(targetEl) && this._hasChildren(targetEl)) {
event.preventDefault();
if (!this.options.onHover) {
return this._closeSubmenu(targetEl);
}
}
};
Tendina.prototype._openSubmenu = function(el) {
var $openMenus, $targetMenu;
$targetMenu = $(el).next('ul');
$openMenus = this.$el.find('> .selected ul').not($targetMenu).not($targetMenu.parents('ul'));
$(el).parent('li').addClass('selected');
this._close($openMenus);
this.$el.find('.selected').not($targetMenu.parents('li')).removeClass('selected');
this._open($targetMenu);
if (this.options.openCallback) {
return this.options.openCallback($(el).parent());
}
};
Tendina.prototype._closeSubmenu = function(el) {
var $nestedMenus, $targetMenu;
$targetMenu = $(el).next('ul');
$nestedMenus = $targetMenu.find('li.selected');
$(el).parent().removeClass('selected');
this._close($targetMenu);
$nestedMenus.removeClass('selected');
this._close($nestedMenus.find('ul'));
if (this.options.closeCallback) {
return this.options.closeCallback($(el).parent());
}
};
Tendina.prototype._open = function($el) {
if (this.options.animate) {
return $el.stop(true, true).slideDown(this.options.speed);
} else {
return $el.show();
}
};
Tendina.prototype._close = function($el) {
if (this.options.animate) {
return $el.stop(true, true).slideUp(this.options.speed);
} else {
return $el.hide();
}
};
Tendina.prototype._hasChildren = function(el) {
return $(el).next('ul').length > 0;
};
Tendina.prototype._IsChildrenHidden = function(el) {
return $(el).next('ul').is(':hidden');
};
Tendina.prototype._isCurrentlyOpen = function(el) {
return $(el).parent().hasClass('selected');
};
Tendina.prototype._hideSubmenus = function() {
return this.$el.find('ul').hide();
};
Tendina.prototype._showSubmenus = function() {
this.$el.find('ul').show();
return this.$el.find('li').addClass('selected');
};
Tendina.prototype._openActiveMenu = function(element) {
var $activeMenu, $activeParents;
$activeMenu = element instanceof jQuery ? element : this.$el.find(element);
$activeParents = $activeMenu.closest('ul').parents('li').find('> a');
if (this._hasChildren($activeParents) && this._IsChildrenHidden($activeParents)) {
$activeParents.next('ul').show();
} else {
$activeMenu.next('ul').show();
}
$activeMenu.parent().addClass('selected');
return $activeParents.parent().addClass('selected');
};
Tendina.prototype.destroy = function() {
this.$el.removeData('tendina');
this._unbindEvents();
this._showSubmenus();
this.$el.removeClass('tendina');
return this.$el.find('.selected').removeClass('selected');
};
Tendina.prototype.hideAll = function() {
return this._hideSubmenus();
};
Tendina.prototype.showAll = function() {
return this._showSubmenus();
};
return Tendina;
})();
return $.fn.extend({
tendina: function() {
var args, option;
option = arguments[0], args = 2 <= arguments.length ? __slice.call(arguments, 1) : [];
return this.each(function() {
var $this, data;
$this = $(this);
data = $this.data('tendina');
if (!data) {
$this.data('tendina', (data = new Tendina(this, option)));
}
if (typeof option === 'string') {
return data[option].apply(data, args);
}
});
}
});
})(window.jQuery, window);
}).call(this);
/*font size ss*/
/*font size ss*/
.ss {
font-size:65%;
line-height:1.6em;
}
.ss, x:-moz-any-link { /* FireFox 2 */
font-size:65%;
line-height:1.5em;
}
.ss, x:-moz-any-link, x:default { /* FireFox 3 */
font-size:65%;
line-height:1.55em;
}
*+html .ss { /* IE 7 */
font-size:65%;
line-height:1.5em;
}
* html .ss { /* IE 6 */
font-size:65%;
line-height:1.5em;
}
/*font size s*/
.s {
font-size:84%;
line-height:1.45em;
}
.s, x:-moz-any-link { /* FireFox 2 */
font-size:84%;
line-height:1.45em;
}
.s, x:-moz-any-link, x:default { /* FireFox 3 */
font-size:84%;
line-height:1.4em;
}
*+html .s { /* IE 7 */
font-size:80%;
line-height:1.45em;
}
* html .s { /* IE 6 */
font-size:75%;
line-height:1.5em;
}
/*font size m*/
.m {
font-size:86%;
line-height:1.6em;
}
.m, x:-moz-any-link { /* FireFox 2 */
font-size:86%;
line-height:1.6em;
}
.m, x:-moz-any-link, x:default { /* FireFox 3 */
font-size:86%;
line-height:1.6em;
}
*+html .m { /* IE 7 */
font-size:98%;
line-height:1.6em;
}
* html .m { /* IE 6 */
font-size:98%;
letter-spacing:-0.03em;
line-height:1.6em;
}
/*font size L*/
.L {
font-size:112%;
line-height:1.5em;
}
.L, x:-moz-any-link { /* FireFox 2 */
font-size:108%;
line-height:1.5em;
}
.L, x:-moz-any-link, x:default { /* FireFox 3 */
font-size:108%;
line-height:1.5em;
}
*+html .L { /* IE 7 */
font-size:104%;
line-height:1.5em;
}
* html .L { /* IE 6 */
font-size:104%;
letter-spacing:-0.03em;
line-height:1.55em;
}
/*font size LL*/
.LL {
font-size:120%;
line-height:1.6em;
}
.LL, x:-moz-any-link { /* FireFox 2 */
font-size:120%;
line-height:1.5em;
}
.LL, x:-moz-any-link, x:default { /* FireFox 3 */
font-size:119.9%;
line-height:1.5em;
}
*+html .LL { /* IE 7 */
font-size:120%;
line-height:1.5em;
}
* html .LL { /* IE 6 */
font-size:116%;
letter-spacing:-0.1em;
line-height:1.55em;
}
/* menu */
/* menu */
.menu-container {
display: block;
height: 100%;
width: 350px;
/*
z-index: 70;
*/
position: absolute;
top: 80px;
left: 0;
overflow: hidden;
-ms-overflow-style: none;
}
.menu-container::-webkit-scrollbar {
display: none;
}
.menu-iframe {
overflow: hidden;
-ms-overflow-style: none;
height: 100%;
}
html {
font-size: 62.5% !important;
}
/*
body {
font-family: 'Noto Sans JP','Avenir','Helvetica Neue','Helvetica','Arial',sans-serif;
font-weight: 400;
font-style: normal;
font-size: 1.6em;
line-height: 1;
position: relative;
height: 100vh;
width: 300px;
}
*/
/*
a {
text-decoration: none;
}
*/
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: "";
content: none;
}
/*
table {
border-collapse: collapse;
border-spacing: 0;
}
*/
/*
* {
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
}
*/
.dropdown {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 244px;
background-color: #2A5772;
font-family: "Montserrat", sans-serif;
padding-top: 80px;
font-size: 12px;
}
.dropdown li {
position: relative;
}
.dropdown li.selected {
background-color: #F8F8F8;
color: #2A5772;
}
.dropdown li.selected a {
color: #2A5772;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
}
.dropdown li.selected > ul > li > a {
color: #fff;
padding-left: 92px;
}
.dropdown li a {
display: block;
/*
width: 100%;
*/
padding: 14px 0 14px 40px;
text-decoration: none;
text-transform: uppercase;
color: #fff;
position: relative;
font-size: 1.6rem;
font-weight: 700;
transition: all .3s;
}
.dropdown > li > ul > li > a {
padding-left: 64px !important;
background: #616C7A;
}
.dropdown li > ul li {
color: #fff;
}
.dropdown li > ul li a {
padding-left: 48px;
color: #fff;
transition: all .0s;
}
.dropdown li > ul li a:hover {
color: #90A4AE;
}
.dropdown li > ul li a:active {
color: #fff;
}
.dropdown li > ul li > ul li {
padding: 10px 0 10px 30px;
}
.dropdown li > ul li > ul li a {
color: #fff;
font-size: 12px;
text-transform: none;
padding: 0;
}
.selected li:nth-child(2) {
background: #616C7A;
color: #fff;
}
.selected li:nth-child(2):hover {
color: #90A4AE;
}
.selected li:nth-child(3) {
background: #616C7A;
color: #fff;
}
.selected li:nth-child(3):hover {
color: #90A4AE;
}
.selected li:first-child {
background: #616C7A;
color: #fff;
}
.selected li:first-child:hover {
color: #90A4AE;
}
.dropdown li.selected:first-child a {
color: #2A5772;
}
.dropdown li.selected:first-child ul a {
color: #fff;
}
.p-sidemenu {
position: relative;
height: 100vh;
width: 244px;
}
.p-sidemenu__sidebtn {
width: 44px;
height: 120px;
background-color: #2A5772;
color: #fff;
display: flex;
justify-content: center;
position: absolute;
left: 244px;
top: 64px;
}
.wrapper_menu {
height: 100%;
width: 244px;
position: relative;
display: block;
}
/*
main {
height: 100%;
min-height: 100vh;
width: 244px;
transition: all .3s;
position: absolute;
}
*/
.menu-trigger {
width: 56px;
height: 120px;
cursor: pointer;
position: fixed;
top: 144px;
left: 0px;
z-index: 100;
transform: translateX(0);
transition: transform .3s;
background-color: #2A5772;
border-radius: 6px;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
display: flex;
justify-content: center;
align-items: center;
}
.menu-trigger__icon {
height: 32px;
width: auto;
transform: rotate(0deg);
transition: all .3s;
}
.active_tri {
transform: rotate(180deg) !important;
transition: all .3s;
}
.menu-trigger.active {
transform: translateX(243px);
}
.menu-trigger span {
display: inline-block;
box-sizing: border-box;
position: absolute;
left: 0;
width: 100%;
height: 4px;
background-color: #000;
}
.menu-trigger.active span {
background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
transform: translateY(12px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
top: 12px;
}
.menu-trigger.active span:nth-of-type(2) {
opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
transform: translateY(-12px) rotate(45deg);
}
nav2 {
width: 244px;
height: 100%;
padding-top: 100px;
background-color: #2A5772;
position: fixed;
top: 0;
left: 0;
z-index: 10;
transform: translate(-250px);
transition: all .3s;
}
nav2.open {
transform: translateZ(0);
}
nav2 li {
color: #fff;
text-align: left;
}
nav2 ul {
list-style: none;
}
.navwrapper {
width: 244px;
height: 100%;
position: relative;
display: block;
-webkit-font-smoothing: antialiased;
}
.menu-ic {
fill: #fff;
height: 24px;
display: inline-block;
vertical-align: middle;
margin-right: 4px;
}
nav2 li.selected > a > .menu-ic {
fill: #2A5772;
}
.u-menu-noChild {
padding-left: 16px;
}
.menu-tri {
fill: #fff;
margin-right: 4px;
display: inline-block;
vertical-align: middle;
transition: all .3s;
}
#menu-tri01 {
transform: rotate(0);
transition: all .3s;
}
nav2 li.selected > a > .menu-tri {
fill: #2A5772 !important;
transform: rotate(90deg) !important;
}
nav2 li.selected > a > #menu-tri01.active_menutri {
transform: rotate(90deg) !important;
}
nav2 li.hasChild > ul {
display: none !important;
}
nav2 li.hasChild.selected > ul {
display: block !important;
}
.menuobject:hover {
background: #90A4AE;
}
/* header */
.section-header_lite {
width: 100%;
background-color: #2A5772;
height: 80px;
padding: 0 56px;
display: flex;
align-items: center;
margin: 0 auto;
box-sizing: border-box;
}
.iu-header-box_lite {
position: relative;
height: 100%;
margin-left: auto;
margin-right: auto;
width: 100%;
max-width: 1808px;
display: flex;
justify-content: space-between;
margin-top: 32px;
margin-bottom: 32px;
box-sizing: border-box;
}
.iu-box-header-left_lite {
float: left;
height: 100%;
position: relative;
width: 30%;
/*
width: 65%;
*/
display: flex;
justify-content: flex-start;
align-items: center;
}
.iu-box-header-right_lite {
width: auto;
display: flex;
align-items: center;
flex-direction: row-reverse;
justify-content: space-between;
position: relative;
}
.text-logout_lite {
font-size: 1.4rem;
font-weight: 700;
height: 32px;
width: 144px;
background-color: #fff;
color: #2A5772;
display: flex;
justify-content: center;
align-items: center;
border-radius: 6px;
}
.text-logout_lite:hover, .a-inner-link_lite:hover {
color: #90A4AE;
}
.header-button_lite {
position: relative;
margin-left: 24px;
}
.a-inner-link_lite {
position: relative;
}
.text-loginId_lite {
font-weight: 300;
vertical-align: middle;
color: #fff;
float: left;
}
/* footer */
footer_lite {
/*
background-color: #F8F8F8;
*/
background-color: transparent;
height: 80px;
width: 100%;
position: absolute;
bottom: 0;
color: #616C7A;
}
footer_lite .iu-header-box_lite {
margin: 0 auto;
color: #616C7A;
}
.text-footer_lite {
font-size: 14px;
color: #616C7A;
height: 75%;
margin-top: 25px;
text-align: center;
}
/* page */
.u-center {
display: block;
margin: 0 auto;
}
.iu-header-box_bottom_page {
position: relative;
height: 100%;
margin-left: auto;
margin-right: auto;
width: 100%;
max-width: 1808px;
display: flex;
justify-content: space-between;
margin-top: 32px;
margin-bottom: 32px;
box-sizing: border-box;
}
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImZvck1lbnUuc2NzcyIsImZvck1lbnUuY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0VBQ0UsY0FBYztFQUNkLFlBQVk7RUFDWixZQUFXO0VBQ1gsV0FBVztFQUNYLGtCQUFrQjtFQUNsQixTQUFRO0VBQ1IsT0FBTztFQUNQLGdCQUFnQjtFQUNoQix3QkFBd0I7QUNDMUI7O0FERUE7RUFDRSxhQUFZO0FDQ2Q7O0FERUE7RUFDRSxnQkFBZ0I7RUFDaEIsd0JBQXdCO0VBQ3hCLFlBQVc7QUNDYiIsImZpbGUiOiJmb3JNZW51LmNzcyIsInNvdXJjZXNDb250ZW50IjpbIi5tZW51LWNvbnRhaW5lcntcbiAgZGlzcGxheTogYmxvY2s7XG4gIGhlaWdodDogMTAwJTtcbiAgd2lkdGg6MzUwcHg7XG4gIHotaW5kZXg6IDcwO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHRvcDo4MHB4O1xuICBsZWZ0OiAwO1xuICBvdmVyZmxvdzogaGlkZGVuO1xuICAtbXMtb3ZlcmZsb3ctc3R5bGU6IG5vbmU7XG59XG5cbi5tZW51LWNvbnRhaW5lcjo6LXdlYmtpdC1zY3JvbGxiYXIge1xuICBkaXNwbGF5Om5vbmU7XG59XG5cbi5tZW51LWlmcmFtZXtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgLW1zLW92ZXJmbG93LXN0eWxlOiBub25lO1xuICBoZWlnaHQ6MTAwJTtcbn0iLCIubWVudS1jb250YWluZXIge1xuICBkaXNwbGF5OiBibG9jaztcbiAgaGVpZ2h0OiAxMDAlO1xuICB3aWR0aDogMzUwcHg7XG4gIHotaW5kZXg6IDcwO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHRvcDogODBweDtcbiAgbGVmdDogMDtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgLW1zLW92ZXJmbG93LXN0eWxlOiBub25lO1xufVxuXG4ubWVudS1jb250YWluZXI6Oi13ZWJraXQtc2Nyb2xsYmFyIHtcbiAgZGlzcGxheTogbm9uZTtcbn1cblxuLm1lbnUtaWZyYW1lIHtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgLW1zLW92ZXJmbG93LXN0eWxlOiBub25lO1xuICBoZWlnaHQ6IDEwMCU7XG59XG4iXX0= */
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z" fill="#fff"/></svg>
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z" fill="#fff"/></svg>
\ No newline at end of file
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04a.996.996 0 000-1.41l-2.34-2.34a.996.996 0 00-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" fill="#fff"/></svg>
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04a.996.996 0 000-1.41l-2.34-2.34a.996.996 0 00-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" fill="#fff"/></svg>
\ No newline at end of file
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13 5h5c.5 0 1 .5 1 1v12c0 .6-.5 1-1 1h-5c-.6 0-1 .4-1 1s.4 1 1 1h6c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-6c-.6 0-1 .5-1 1s.4 1 1 1zm-.3 6l-1.9-1.9c-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0l3.6 3.6c.4.4.4 1 0 1.4l-3.6 3.6c-.4.4-1 .4-1.4 0-.4-.4-.4-1 0-1.4l1.9-1.9H4c-.5 0-1-.4-1-1s.5-1 1-1h8.7z" fill="#fff"/></svg>
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13 5h5c.5 0 1 .5 1 1v12c0 .6-.5 1-1 1h-5c-.6 0-1 .4-1 1s.4 1 1 1h6c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-6c-.6 0-1 .5-1 1s.4 1 1 1zm-.3 6l-1.9-1.9c-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0l3.6 3.6c.4.4.4 1 0 1.4l-3.6 3.6c-.4.4-1 .4-1.4 0-.4-.4-.4-1 0-1.4l1.9-1.9H4c-.5 0-1-.4-1-1s.5-1 1-1h8.7z" fill="#fff"/></svg>
\ No newline at end of file
<svg width="18" height="18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.25 9.75v3.75c0 .375-.375.75-.75.75h-9a.752.752 0 01-.75-.75V9.75C3.75 9.3 3.45 9 3 9s-.75.3-.75.75v4.5c0 .825.675 1.5 1.5 1.5h10.5c.825 0 1.5-.675 1.5-1.5v-4.5c0-.45-.375-.75-.75-.75s-.75.3-.75.75zm-4.5-.225L11.175 8.1c.3-.3.75-.3 1.05 0 .3.3.3.75 0 1.05l-2.7 2.7c-.3.3-.75.3-1.05 0l-2.7-2.7c-.3-.3-.3-.75 0-1.05.3-.3.75-.3 1.05 0L8.25 9.525V3c0-.375.3-.75.75-.75s.75.375.75.75v6.525z" fill="#2A5772"/></svg>
<svg width="18" height="18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.25 9.75v3.75c0 .375-.375.75-.75.75h-9a.752.752 0 01-.75-.75V9.75C3.75 9.3 3.45 9 3 9s-.75.3-.75.75v4.5c0 .825.675 1.5 1.5 1.5h10.5c.825 0 1.5-.675 1.5-1.5v-4.5c0-.45-.375-.75-.75-.75s-.75.3-.75.75zm-4.5-.225L11.175 8.1c.3-.3.75-.3 1.05 0 .3.3.3.75 0 1.05l-2.7 2.7c-.3.3-.75.3-1.05 0l-2.7-2.7c-.3-.3-.3-.75 0-1.05.3-.3.75-.3 1.05 0L8.25 9.525V3c0-.375.3-.75.75-.75s.75.375.75.75v6.525z" fill="#2A5772"/></svg>
\ No newline at end of file
<svg width="40" height="40" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.667 30H25c.917 0 1.667-.75 1.667-1.667 0-.916-.75-1.666-1.667-1.666H6.667c-.917 0-1.667.75-1.667 1.666C5 29.25 5.75 30 6.667 30zm0-8.333H20c.917 0 1.667-.75 1.667-1.667s-.75-1.667-1.667-1.667H6.667C5.75 18.333 5 19.083 5 20s.75 1.667 1.667 1.667zM5 11.667c0 .916.75 1.666 1.667 1.666H25c.917 0 1.667-.75 1.667-1.666 0-.917-.75-1.667-1.667-1.667H6.667C5.75 10 5 10.75 5 11.667zM33.833 24.8l-4.8-4.8 4.8-4.8a1.662 1.662 0 00-2.35-2.35L25.5 18.833a1.66 1.66 0 000 2.35l5.983 5.984c.65.65 1.7.65 2.35 0 .634-.65.65-1.717 0-2.367z" fill="#fff"/></svg>
<svg width="40" height="40" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.667 30H25c.917 0 1.667-.75 1.667-1.667 0-.916-.75-1.666-1.667-1.666H6.667c-.917 0-1.667.75-1.667 1.666C5 29.25 5.75 30 6.667 30zm0-8.333H20c.917 0 1.667-.75 1.667-1.667s-.75-1.667-1.667-1.667H6.667C5.75 18.333 5 19.083 5 20s.75 1.667 1.667 1.667zM5 11.667c0 .916.75 1.666 1.667 1.666H25c.917 0 1.667-.75 1.667-1.666 0-.917-.75-1.667-1.667-1.667H6.667C5.75 10 5 10.75 5 11.667zM33.833 24.8l-4.8-4.8 4.8-4.8a1.662 1.662 0 00-2.35-2.35L25.5 18.833a1.66 1.66 0 000 2.35l5.983 5.984c.65.65 1.7.65 2.35 0 .634-.65.65-1.717 0-2.367z" fill="#fff"/></svg>
\ No newline at end of file
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.712 8.042c-.106-.211-.317-.317-.53-.529a1.995 1.995 0 00-.846-.212c-.318 0-.635.106-.847.212-.212.106-.424.318-.53.424-.211.211-.317.423-.317.74-.106.318-.106 1.06-.106 2.012 0 1.059 0 1.694.106 2.012.106.317.212.53.318.74.105.213.317.318.529.424.212.106.53.212.847.212.317 0 .53 0 .74-.106l-1.058-.847s-.106-.106-.106-.212c0-.105 0-.105.106-.211l.953-1.059c0-.106.106-.106.212-.106s.106 0 .106.106l.847.741c0-.423.106-.953.106-1.694 0-1.059 0-1.694-.106-2.011-.212-.212-.318-.424-.424-.636z" fill="#fff"/><path d="M15.936 2.855C9.16-.11 2.596 5.078 3.019 11.642c.318 4.658 4.659 8.364 9.317 8.364h.212v2.752c0 .106.212.212.317.212 6.882-3.494 10.27-11.328 6.776-17.045-.953-1.376-2.223-2.435-3.705-3.07zM17.1 15.347l-.953 1.06c0 .105-.105.105-.211.105s-.106 0-.106-.106l-1.165-.847c-.635.53-1.376.847-2.435.847-.847 0-1.588-.212-2.117-.635-.53-.424-.953-.847-1.27-1.376-.107-.212-.107-.318-.212-.424-.106-.212-.106-.318-.106-.635-.106-.424-.106-1.27-.106-2.435 0-1.27 0-2.012.106-2.435.106-.424.211-.847.423-1.059.212-.53.635-.953 1.27-1.376.53-.424 1.271-.635 2.118-.635s1.588.211 2.117.635c.53.317.953.74 1.271 1.27.212.212.318.635.423 1.059.106.423.106 1.27.106 2.435 0 1.059 0 1.906-.106 2.33 0 .317-.105.634-.211.952l1.164.953s.106.106.106.212c-.106 0-.106.105-.106.105z" fill="#fff"/></svg>
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.712 8.042c-.106-.211-.317-.317-.53-.529a1.995 1.995 0 00-.846-.212c-.318 0-.635.106-.847.212-.212.106-.424.318-.53.424-.211.211-.317.423-.317.74-.106.318-.106 1.06-.106 2.012 0 1.059 0 1.694.106 2.012.106.317.212.53.318.74.105.213.317.318.529.424.212.106.53.212.847.212.317 0 .53 0 .74-.106l-1.058-.847s-.106-.106-.106-.212c0-.105 0-.105.106-.211l.953-1.059c0-.106.106-.106.212-.106s.106 0 .106.106l.847.741c0-.423.106-.953.106-1.694 0-1.059 0-1.694-.106-2.011-.212-.212-.318-.424-.424-.636z" fill="#fff"/><path d="M15.936 2.855C9.16-.11 2.596 5.078 3.019 11.642c.318 4.658 4.659 8.364 9.317 8.364h.212v2.752c0 .106.212.212.317.212 6.882-3.494 10.27-11.328 6.776-17.045-.953-1.376-2.223-2.435-3.705-3.07zM17.1 15.347l-.953 1.06c0 .105-.105.105-.211.105s-.106 0-.106-.106l-1.165-.847c-.635.53-1.376.847-2.435.847-.847 0-1.588-.212-2.117-.635-.53-.424-.953-.847-1.27-1.376-.107-.212-.107-.318-.212-.424-.106-.212-.106-.318-.106-.635-.106-.424-.106-1.27-.106-2.435 0-1.27 0-2.012.106-2.435.106-.424.211-.847.423-1.059.212-.53.635-.953 1.27-1.376.53-.424 1.271-.635 2.118-.635s1.588.211 2.117.635c.53.317.953.74 1.271 1.27.212.212.318.635.423 1.059.106.423.106 1.27.106 2.435 0 1.059 0 1.906-.106 2.33 0 .317-.105.634-.211.952l1.164.953s.106.106.106.212c-.106 0-.106.105-.106.105z" fill="#fff"/></svg>
\ No newline at end of file
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 17c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v5c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" fill="#fff"/></svg>
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 17c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v5c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" fill="#fff"/></svg>
\ No newline at end of file
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 16h4a1 1 0 001-1v-5h1.586a1 1 0 00.707-1.707l-4.586-4.586a1 1 0 00-1.414 0L6.707 8.293A1 1 0 007.414 10H9v5a1 1 0 001 1zm-4 2h12a1 1 0 010 2H6a1 1 0 110-2z" fill="#fff"/></svg>
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 16h4a1 1 0 001-1v-5h1.586a1 1 0 00.707-1.707l-4.586-4.586a1 1 0 00-1.414 0L6.707 8.293A1 1 0 007.414 10H9v5a1 1 0 001 1zm-4 2h12a1 1 0 010 2H6a1 1 0 110-2z" fill="#fff"/></svg>
\ No newline at end of file
<svg width="21" height="22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.208 1.375H2.917A2.042 2.042 0 00.875 3.417v14.291a2.042 2.042 0 002.042 2.042h14.291a2.048 2.048 0 002.042-2.042V3.417a2.042 2.042 0 00-2.042-2.042zm0 16.333H2.917V5.458h14.291v12.25zm-5.614-6.125a1.53 1.53 0 01-1.531 1.532 1.53 1.53 0 01-1.532-1.532 1.53 1.53 0 011.531-1.53 1.53 1.53 0 011.532 1.53zM10.063 7.5c-2.787 0-5.166 1.695-6.126 4.083.96 2.39 3.339 4.084 6.126 4.084 2.786 0 5.165-1.695 6.124-4.084-.96-2.388-3.338-4.083-6.125-4.083zm0 6.635a2.552 2.552 0 110-5.104 2.552 2.552 0 010 5.104z" fill="#fff"/></svg>
<svg width="21" height="22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.208 1.375H2.917A2.042 2.042 0 00.875 3.417v14.291a2.042 2.042 0 002.042 2.042h14.291a2.048 2.048 0 002.042-2.042V3.417a2.042 2.042 0 00-2.042-2.042zm0 16.333H2.917V5.458h14.291v12.25zm-5.614-6.125a1.53 1.53 0 01-1.531 1.532 1.53 1.53 0 01-1.532-1.532 1.53 1.53 0 011.531-1.53 1.53 1.53 0 011.532 1.53zM10.063 7.5c-2.787 0-5.166 1.695-6.126 4.083.96 2.39 3.339 4.084 6.126 4.084 2.786 0 5.165-1.695 6.124-4.084-.96-2.388-3.338-4.083-6.125-4.083zm0 6.635a2.552 2.552 0 110-5.104 2.552 2.552 0 010 5.104z" fill="#fff"/></svg>
\ No newline at end of file
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 3h-4.2c-.4-1.2-1.5-2-2.8-2-1.3 0-2.4.8-2.8 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.6 0 1 .5 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1zm1 14H8c-.6 0-1-.5-1-1s.4-1 1-1h5c.6 0 1 .4 1 1 0 .5-.4 1-1 1zm3-4H8c-.6 0-1-.4-1-1s.4-1 1-1h8c.5 0 1 .4 1 1s-.5 1-1 1zm0-4H8c-.6 0-1-.4-1-1s.4-1 1-1h8c.5 0 1 .4 1 1s-.5 1-1 1z" fill="#fff"/></svg>
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 3h-4.2c-.4-1.2-1.5-2-2.8-2-1.3 0-2.4.8-2.8 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.6 0 1 .5 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1zm1 14H8c-.6 0-1-.5-1-1s.4-1 1-1h5c.6 0 1 .4 1 1 0 .5-.4 1-1 1zm3-4H8c-.6 0-1-.4-1-1s.4-1 1-1h8c.5 0 1 .4 1 1s-.5 1-1 1zm0-4H8c-.6 0-1-.4-1-1s.4-1 1-1h8c.5 0 1 .4 1 1s-.5 1-1 1z" fill="#fff"/></svg>
\ No newline at end of file
<svg width="18" height="18" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0)"><path d="M13.1 8.4L5.6 3.2c-.5-.3-1.1 0-1.1.6v10.4c0 .6.6.9 1.1.6l7.5-5.2c.4-.3.4-.9 0-1.2z" fill="#2A5772"/></g><defs><clipPath id="clip0"><path fill="#fff" transform="rotate(180 9 9)" d="M0 0h18v18H0z"/></clipPath></defs></svg>
<svg width="18" height="18" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0)"><path d="M13.1 8.4L5.6 3.2c-.5-.3-1.1 0-1.1.6v10.4c0 .6.6.9 1.1.6l7.5-5.2c.4-.3.4-.9 0-1.2z" fill="#2A5772"/></g><defs><clipPath id="clip0"><path fill="#fff" transform="rotate(180 9 9)" d="M0 0h18v18H0z"/></clipPath></defs></svg>
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
/* http://keith-wood.name/datepick.html
/* http://keith-wood.name/datepick.html
Japanese localisation for jQuery Datepicker.
Written by Kentaro SATO (kentaro@ranvis.com). */
(function($) {
$.datepicker.regional['ja'] = {
monthNames: ['1月','2月','3月','4月','5月','6月',
'7月','8月','9月','10月','11月','12月'],
monthNamesShort: ['1月','2月','3月','4月','5月','6月',
'7月','8月','9月','10月','11月','12月'],
dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'],
dayNamesShort: ['日','月','火','水','木','金','土'],
dayNamesMin: ['日','月','火','水','木','金','土'],
dateFormat: 'yy/mm/dd', firstDay: 0,
prevText: '&#x3c;前', prevStatus: '前月を表示します',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '前年を表示します',
nextText: '次&#x3e;', nextStatus: '翌月を表示します',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '翌年を表示します',
currentText: '今日', currentStatus: '今月を表示します',
todayText: '今月', todayStatus: '今月を表示します',
clearText: 'クリア', clearStatus: '日付をクリアします',
closeText: '閉じる', closeStatus: '変更せずに閉じます',
yearStatus: '表示する年を変更します', monthStatus: '表示する月を変更します',
weekText: '週', weekStatus: '暦週で第何週目かを表します',
dayStatus: 'Md日(D)', defaultStatus: '日付を選択します',
isRTL: false,
showMonthAfterYear: true,
yearSuffix: '年'
};
$.datepicker.setDefaults($.datepicker.regional['ja']);
})(jQuery);
/* Main style sheet for jQuery Keypad v2.0.0. */
/* Main style sheet for jQuery Keypad v2.0.0. */
button.keypad-trigger {
width: 25px;
padding: 0px;
}
img.keypad-trigger {
margin: 2px;
vertical-align: middle;
}
.keypad-popup, .keypad-inline, .keypad-key, .keypad-special {
font-family: Arial,Helvetica,sans-serif;
font-size: 14px;
}
.keypad-popup {
display: none;
z-index: 999999;
margin: 0;
padding: 0;
width: 280px;
height: 300px;
background-color: #fff;
color: #000;
border: 1px solid #888;
-moz-border-radius: 0.25em;
-webkit-border-radius: 0.25em;
border-radius: 0.25em;
}
.keypad-keyentry {
display: none;
}
.keypad-inline {
background-color: #fff;
border: 1px solid #888;
-moz-border-radius: 0.25em;
-webkit-border-radius: 0.25em;
border-radius: 0.25em;
}
.keypad-disabled {
position: absolute;
z-index: 100;
background-color: white;
opacity: 0.5;
filter: alpha(opacity=50);
}
.keypad-rtl {
direction: rtl;
}
.keypad-prompt {
clear: both;
text-align: center;
}
.keypad-prompt.ui-widget-header {
margin: 0.125em;
}
.keypad-row {
width: 100%;
}
.keypad-space {
display: inline-block;
margin: 0.125em;
width: 2em;
}
.keypad-half-space {
display: inline-block;
margin: 0.125em 0.0625em;
width: 1em;
}
.keypad-key, .keypad-special {
margin: 0.125em;
padding: 0em;
width: 5em;
height: 5em;
background-color: #f4f4f4;
-moz-border-radius: 0.25em;
-webkit-border-radius: 0.25em;
border-radius: 0.25em;
text-align: center;
cursor: pointer;
}
.keypad-key[disabled] {
border: 0.125em outset;
}
.keypad-key-down {
}
.keypad-special {
width: 4.25em;
}
.keypad-spacebar {
width: 13.25em;
}
.keypad-tab {
width: 2em;
}
.keypad-clear, .keypad-back, .keypad-close, .keypad-shift {
color: #fff;
font-weight: bold;
}
.keypad-clear {
background-color: #a00;
}
.keypad-back {
background-color: #00a;
}
.keypad-close {
background-color: #0a0;
}
.keypad-shift {
background-color: #0aa;
}
/*! http://mths.be/placeholder v2.0.7 by @mathias */
/*! http://mths.be/placeholder v2.0.7 by @mathias */
;(function(f,h,$){var a='placeholder' in h.createElement('input'),d='placeholder' in h.createElement('textarea'),i=$.fn,c=$.valHooks,k,j;if(a&&d){j=i.placeholder=function(){return this};j.input=j.textarea=true}else{j=i.placeholder=function(){var l=this;l.filter((a?'textarea':':input')+'[placeholder]').not('.placeholder').bind({'focus.placeholder':b,'blur.placeholder':e}).data('placeholder-enabled',true).trigger('blur.placeholder');return l};j.input=a;j.textarea=d;k={get:function(m){var l=$(m);return l.data('placeholder-enabled')&&l.hasClass('placeholder')?'':m.value},set:function(m,n){var l=$(m);if(!l.data('placeholder-enabled')){return m.value=n}if(n==''){m.value=n;if(m!=h.activeElement){e.call(m)}}else{if(l.hasClass('placeholder')){b.call(m,true,n)||(m.value=n)}else{m.value=n}}return l}};a||(c.input=k);d||(c.textarea=k);$(function(){$(h).delegate('form','submit.placeholder',function(){var l=$('.placeholder',this).each(b);setTimeout(function(){l.each(e)},10)})});$(f).bind('beforeunload.placeholder',function(){$('.placeholder').each(function(){this.value=''})})}function g(m){var l={},n=/^jQuery\d+$/;$.each(m.attributes,function(p,o){if(o.specified&&!n.test(o.name)){l[o.name]=o.value}});return l}function b(m,n){var l=this,o=$(l);if(l.value==o.attr('placeholder')&&o.hasClass('placeholder')){if(o.data('placeholder-password')){o=o.hide().next().show().attr('id',o.removeAttr('id').data('placeholder-id'));if(m===true){return o[0].value=n}o.focus()}else{l.value='';o.removeClass('placeholder');l==h.activeElement&&l.select()}}}function e(){var q,l=this,p=$(l),m=p,o=this.id;if(l.value==''){if(l.type=='password'){if(!p.data('placeholder-textinput')){try{q=p.clone().attr({type:'text'})}catch(n){q=$('<input>').attr($.extend(g(this),{type:'text'}))}q.removeAttr('name').data({'placeholder-password':true,'placeholder-id':o}).bind('focus.placeholder',b);p.data({'placeholder-textinput':q,'placeholder-id':o}).before(q)}p=p.removeAttr('id').hide().prev().attr('id',o).show()}p.addClass('placeholder');p[0].value=p.attr('placeholder')}else{p.removeClass('placeholder')}}}(this,document,jQuery));
\ No newline at end of file
/*! Simple JavaScript Inheritance
/*! Simple JavaScript Inheritance
* By John Resig http://ejohn.org/
* MIT Licensed.
*/
!function(){"use strict";var a=!1;window.JQClass=function(){},JQClass.classes={},JQClass.extend=function b(c){function d(){!a&&this._init&&this._init.apply(this,arguments)}var e=this.prototype;a=!0;var f=new this;a=!1;for(var g in c)if("function"==typeof c[g]&&"function"==typeof e[g])f[g]=function(a,b){return function(){var c=this._super;this._super=function(b){return e[a].apply(this,b||[])};var d=b.apply(this,arguments);return this._super=c,d}}(g,c[g]);else if("object"==typeof c[g]&&"object"==typeof e[g]&&"defaultOptions"===g){var h,i=e[g],j=c[g],k={};for(h in i)k[h]=i[h];for(h in j)k[h]=j[h];f[g]=k}else f[g]=c[g];return d.prototype=f,d.prototype.constructor=d,d.extend=b,d}}(),/*! Abstract base class for collection plugins v1.0.2.
Written by Keith Wood (wood.keith{at}optusnet.com.au) December 2013.
Licensed under the MIT license (http://keith-wood.name/licence.html). */
function($){"use strict";function camelCase(a){return a.replace(/-([a-z])/g,function(a,b){return b.toUpperCase()})}JQClass.classes.JQPlugin=JQClass.extend({name:"plugin",defaultOptions:{},regionalOptions:{},deepMerge:!0,_getMarker:function(){return"is-"+this.name},_init:function(){$.extend(this.defaultOptions,this.regionalOptions&&this.regionalOptions[""]||{});var a=camelCase(this.name);$[a]=this,$.fn[a]=function(b){var c=Array.prototype.slice.call(arguments,1),d=this,e=this;return this.each(function(){if("string"==typeof b){if("_"===b[0]||!$[a][b])throw"Unknown method: "+b;var f=$[a][b].apply($[a],[this].concat(c));if(f!==d&&void 0!==f)return e=f,!1}else $[a]._attach(this,b)}),e}},setDefaults:function(a){$.extend(this.defaultOptions,a||{})},_attach:function(a,b){if(a=$(a),!a.hasClass(this._getMarker())){a.addClass(this._getMarker()),b=$.extend(this.deepMerge,{},this.defaultOptions,this._getMetadata(a),b||{});var c=$.extend({name:this.name,elem:a,options:b},this._instSettings(a,b));a.data(this.name,c),this._postAttach(a,c),this.option(a,b)}},_instSettings:function(a,b){return{}},_postAttach:function(a,b){},_getMetadata:function(elem){try{var data=elem.data(this.name.toLowerCase())||"";data=data.replace(/(\\?)'/g,function(a,b){return b?"'":'"'}).replace(/([a-zA-Z0-9]+):/g,function(a,b,c){var d=data.substring(0,c).match(/"/g);return d&&d.length%2!==0?b+":":'"'+b+'":'}).replace(/\\:/g,":"),data=$.parseJSON("{"+data+"}");for(var key in data)if(data.hasOwnProperty(key)){var value=data[key];"string"==typeof value&&value.match(/^new Date\(([-0-9,\s]*)\)$/)&&(data[key]=eval(value))}return data}catch(a){return{}}},_getInst:function(a){return $(a).data(this.name)||{}},option:function(a,b,c){a=$(a);var d=a.data(this.name),e=b||{};return!b||"string"==typeof b&&"undefined"==typeof c?(e=(d||{}).options,e&&b?e[b]:e):void(a.hasClass(this._getMarker())&&("string"==typeof b&&(e={},e[b]=c),this._optionsChanged(a,d,e),$.extend(d.options,e)))},_optionsChanged:function(a,b,c){},destroy:function(a){a=$(a),a.hasClass(this._getMarker())&&(this._preDestroy(a,this._getInst(a)),a.removeData(this.name).removeClass(this._getMarker()))},_preDestroy:function(a,b){}}),$.JQPlugin={createPlugin:function(a,b){"object"==typeof a&&(b=a,a="JQPlugin"),a=camelCase(a);var c=camelCase(b.name);JQClass.classes[c]=JQClass.classes[a].extend(b),new JQClass.classes[c]}}}(jQuery);
//# sourceMappingURL=jquery.plugin.min.map
\ No newline at end of file
/* ------------------------------------------------------------------------
/* ------------------------------------------------------------------------
Class: prettyPopin
Use: Alternative to popups
Author: Stephane Caron (http://www.no-margin-for-errors.com)
Version: 1.3
------------------------------------------------------------------------- */
var _0=false;var _1=false;(function(a){a.fn.prettyPopin=function(b){b=jQuery.extend({modal:false,width:false,height:false,opacity:0.5,animationSpeed:'fast',followScroll:true,loader_path:'images/prettyPopin/loader.gif',callback:function(){}},b);function l(){if(_1)return;_1=true;a(window).scroll(function(){i()});a(window).resize(function(){i()})};l();return this.each(function(){var e;var f;var c;a(this).click(function(){m();n();a.get(a(this).attr('href'),function(d){a('.prettyPopin .prettyContent .prettyContent-container').html(d);e=b.width||a('.prettyPopin .prettyContent .prettyContent-container').width()+parseFloat(a('.prettyPopin .prettyContent .prettyContent-container').css('padding-left'))+parseFloat(a('.prettyPopin .prettyContent .prettyContent-container').css('padding-right'));a('.prettyPopin').width(e);f=b.height||a('.prettyPopin .prettyContent .prettyContent-container').height()+parseFloat(a('.prettyPopin .prettyContent .prettyContent-container').css('padding-top'))+parseFloat(a('.prettyPopin .prettyContent .prettyContent-container').css('padding-bottom'));a('.prettyPopin').height(f);a('.prettyPopin').height(45).width(45);o()});return false});var o=function(){var d=g();projectedTop=(a(window).height()/2)+d['scrollTop']-(f/2);if(projectedTop<0){projectedTop=10;_0=false}else{_0=b.followScroll};a('.prettyPopin').animate({'top':projectedTop,'left':(a(window).width()/2)+d['scrollLeft']-(e/2),'width':e,'height':f},b.animationSpeed,function(){j()})};var n=function(){a('body').append('<div class="prettyPopin"><a href="#" id="b_close" rel="close">Close</a><div class="prettyContent"><img src="'+b.loader_path+'" alt="Loading" class="loader" /><div class="prettyContent-container"></div></div></div>');c=a('.prettyPopin .prettyContent .prettyContent-container');a('.prettyPopin a[rel=close]:eq(0)').click(function(){h();return false});var d=g();a('.prettyPopin').width(45).height(45).css({'top':(a(window).height()/2)+d['scrollTop'],'left':(a(window).width()/2)+d['scrollLeft']}).hide().fadeIn(b.animationSpeed)};var m=function(){a('body').append('<div id="overlay"></div>');a('#overlay').css('height',a(document).height());a('#overlay').css('opacity',0).fadeTo(b.animationSpeed,b.opacity);if(!b.modal){a('#overlay').click(function(){h()})}};var j=function(){c.parent().find('.loader').hide();c.parent().parent().find('#b_close').show();c.fadeIn(function(){a(this).find('input[type=text]:first').trigger('focus');a('.prettyPopin a[rel=internal]').click(function(){$link=a(this);c.fadeOut(function(){c.parent().find('.loader').show();a.get($link.attr('href'),function(d){c.html(d);k(c)})});return false});a('.prettyPopin form').bind('submit',function(){$theForm=a(this);c.fadeOut(function(){c.parent().find('.loader').show();a.post($theForm.attr('action'),$theForm.serialize(),function(d){c.html(d);k(c)})});return false})});a('.prettyPopin a[rel=close]:gt(0)').click(function(){h();return false})};var k=function(){var d=g();if(!b.width)e=c.width()+parseFloat(c.css('padding-left'))+parseFloat(c.css('padding-right'));if(!b.height)f=c.height()+parseFloat(c.css('padding-top'))+parseFloat(c.css('padding-bottom'));projectedTop=(a(window).height()/2)+d['scrollTop']-(f/2);if(projectedTop<0){projectedTop=10;_0=false}else{_0=b.followScroll};a('.prettyPopin').animate({'top':projectedTop,'left':(a(window).width()/2)+d['scrollLeft']-(e/2),'width':e,'height':f},b.animationSpeed,function(){j()})};var h=function(){a('#overlay').fadeOut(b.animationSpeed,function(){a(this).remove()});a('.prettyPopin').fadeOut(b.animationSpeed,function(){a(this).remove();b.callback()})}});function i(){if(!_0)return;if(!a('.prettyPopin'))return;var d=g();if(a.browser.opera){windowHeight=window.innerHeight;windowWidth=window.innerWidth}else{windowHeight=a(window).height();windowWidth=a(window).width()};projectedTop=(a(window).height()/2)+d['scrollTop']-(a('.prettyPopin').height()/2);if(projectedTop<0){projectedTop=10;_0=false}else{_0=true};a('.prettyPopin').css({'top':projectedTop,'left':(a(window).width()/2)+d['scrollLeft']-(a('.prettyPopin').width()/2)})};function g(){scrollTop=window.pageYOffset||document.documentElement.scrollTop||0;scrollLeft=window.pageXOffset||document.documentElement.scrollLeft||0;return{scrollTop:scrollTop,scrollLeft:scrollLeft}}}})(jQuery);
/*エディタ用のスタイルです。*/
/*エディタ用のスタイルです。*/
/*マックでもウィンドウズでも無い場合にこのスタイルが適用されます。*/
/*font size ss*/
.ss {
font-size:60%;
line-height:1.5em;
}
/*font size s*/
.s {
font-size:78%;
line-height:1.6em;
}
/*font size m*/
.m {
font-size:86%;
line-height:1.6em;
}
/*font size L*/
.L {
font-size:108%;
line-height:1.56em;
}
/*font size LL*/
.LL {
font-size:114%;
line-height:1.5em;
}
#overlay{background:#000;position:absolute;top:0;left:0;z-index:10000;width:100%}.prettyPopin{display:none;overflow:hidden;position:absolute;z-index:11000;top:50%;left:50%;background:url(../images/popinLeft.gif) bottom left no-repeat}.prettyPopin a#b_close{display:none;position:absolute;z-index:2;top:10px;right:13px;width:41px;height:9px;text-indent:-10000px;background:url(../images/b_close.gif) bottom left no-repeat}.prettyPopin .prettyContent{position:relative;width:100%;height:100%;font-size:1.2em;background:url(../images/popinRight.gif) bottom right no-repeat}.prettyPopin .prettyContent .prettyContent-container{display:none;padding:20px 15px 15px 15px}.prettyPopin .prettyContent .loader{position:absolute;top:50%;left:50%;margin:-14px 0 0 -14px}
#overlay{background:#000;position:absolute;top:0;left:0;z-index:10000;width:100%}.prettyPopin{display:none;overflow:hidden;position:absolute;z-index:11000;top:50%;left:50%;background:url(../images/popinLeft.gif) bottom left no-repeat}.prettyPopin a#b_close{display:none;position:absolute;z-index:2;top:10px;right:13px;width:41px;height:9px;text-indent:-10000px;background:url(../images/b_close.gif) bottom left no-repeat}.prettyPopin .prettyContent{position:relative;width:100%;height:100%;font-size:1.2em;background:url(../images/popinRight.gif) bottom right no-repeat}.prettyPopin .prettyContent .prettyContent-container{display:none;padding:20px 15px 15px 15px}.prettyPopin .prettyContent .loader{position:absolute;top:50%;left:50%;margin:-14px 0 0 -14px}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
HTML {
HTML {
background: rgb(255, 255, 255); color: rgb(0, 0, 0);
}
BODY {
margin: 0px; padding: 0px;
}
DIV {
margin: 0px; padding: 0px;
}
DL {
margin: 0px; padding: 0px;
}
DT {
margin: 0px; padding: 0px;
}
DD {
margin: 0px; padding: 0px;
}
UL {
margin: 0px; padding: 0px;
}
OL {
margin: 0px; padding: 0px;
}
LI {
margin: 0px; padding: 0px;
}
H1 {
margin: 0px; padding: 0px;
}
H2 {
margin: 0px; padding: 0px;
}
H3 {
margin: 0px; padding: 0px;
}
H4 {
margin: 0px; padding: 0px;
}
H5 {
margin: 0px; padding: 0px;
}
H6 {
margin: 0px; padding: 0px;
}
PRE {
margin: 0px; padding: 0px;
}
CODE {
margin: 0px; padding: 0px;
}
FORM {
margin: 0px; padding: 0px;
}
FIELDSET {
margin: 0px; padding: 0px;
}
LEGEND {
margin: 0px; padding: 0px;
}
INPUT {
margin: 0px; padding: 0px;
}
TEXTAREA {
margin: 0px; padding: 0px;
}
P {
margin: 0px; padding: 0px;
}
BLOCKQUOTE {
margin: 0px; padding: 0px;
}
TH {
margin: 0px; padding: 0px;
}
TD {
margin: 0px; padding: 0px;
}
TABLE {
border-collapse: collapse; border-spacing: 0;
}
FIELDSET {
border: 0px;
}
IMG {
border: 0px;
}
ADDRESS {
font-style: normal; font-weight: normal;
}
CAPTION {
font-style: normal; font-weight: normal;
}
CITE {
font-style: normal; font-weight: normal;
}
CODE {
font-style: normal; font-weight: normal;
}
DFN {
font-style: normal; font-weight: normal;
}
EM {
font-style: normal; font-weight: normal;
}
TH {
font-style: normal; font-weight: normal;
}
VAR {
font-style: normal; font-weight: normal;
}
LI {
list-style: none;
}
CAPTION {
text-align: left;
}
TH {
text-align: left;
}
H1 {
font-size: 100%; font-weight: normal;
}
H2 {
font-size: 100%; font-weight: normal;
}
H3 {
font-size: 100%; font-weight: normal;
}
H4 {
font-size: 100%; font-weight: normal;
}
H5 {
font-size: 100%; font-weight: normal;
}
H6 {
font-size: 100%; font-weight: normal;
}
Q::before {
content: "";
}
Q::after {
content: "";
}
ABBR {
border: 0px; font-variant: normal;
}
ACRONYM {
border: 0px; font-variant: normal;
}
SUP {
vertical-align: text-top;
}
SUB {
vertical-align: text-bottom;
}
INPUT {
font-family: inherit; font-size: inherit; font-weight: inherit;
}
TEXTAREA {
font-family: inherit; font-size: inherit; font-weight: inherit;
}
SELECT {
font-family: inherit; font-size: inherit; font-weight: inherit;
}
INPUT {
}
TEXTAREA {
}
SELECT {
}
LEGEND {
color: rgb(0, 0, 0);
}
DEL {
text-decoration: none;
}
INS {
text-decoration: none;
}
.test10 {
font-size: 77%;
}
.test11 {
font-size: 85%;
}
.test12 {
font-size: 93%;
}
.test13 {
font-size: 100%;
}
.test14 {
font-size: 108%;
}
.test15 {
font-size: 116%;
}
.test16 {
font-size: 123.1%;
}
.test17 {
font-size: 131%;
}
.test18 {
font-size: 138.5%;
}
.test19 {
font-size: 146.5%;
}
.test20 {
font-size: 153.9%;
}
.test21 {
font-size: 161.6%;
}
.test22 {
font-size: 167%;
}
.test23 {
font-size: 174%;
}
.test24 {
font-size: 182%;
}
.test25 {
font-size: 189%;
}
.test26 {
font-size: 197%;
}
This source diff could not be displayed because it is too large. You can view the blob instead.
//名前空間用のオブジェクトを用意する
var SUBWIN = {};
//サブウィンドウを開く(アカウント)
SUBWIN.subWinArray = {};
$(document).ready(function(){
//画面を離れる場合は開いているウィンドウを閉じる
window.onbeforeunload = function(){
for ( var key in SUBWIN.subWinArray ) {
if(SUBWIN.subWinArray[key] != null && SUBWIN.subWinArray[key].closed == false){
SUBWIN.subWinArray[key].close();
}
}
};
});
SUBWIN.openSubWindow = function(winUrl, winName, winOpt, winWidth, winHeight) {
if (winHeight > window.innerHeight) {
winHeight = window.innerHeight * 0.9;
}
//既に開いている場合は閉じる
for ( var key in SUBWIN.subWinArray ) {
if(SUBWIN.subWinArray[key] != null && SUBWIN.subWinArray[key].closed == false){
SUBWIN.subWinArray[key].close();
}
}
if (winWidth) {
if (window.screen.width > winWidth){
winOpt+=", left="+(window.screen.width-winWidth)/2;
}
winOpt+=", width="+winWidth;
}
if (winHeight) {
if (window.screen.height > winHeight){
winOpt+=", top="+(window.screen.height-winHeight)/2;
}
winOpt+=", height="+winHeight;
}
SUBWIN.subWinArray[winName] = window.open(winUrl,winName,winOpt);
SUBWIN.subWinArray[winName].focus();
};
// サブウィンドウを閉じる
SUBWIN.closeSubWindow = function() {
for ( var key in SUBWIN.subWinArray ) {
if(SUBWIN.subWinArray[key] != null && SUBWIN.subWinArray[key].closed == false){
SUBWIN.subWinArray[key].close();
}
}
}
\ No newline at end of file
/*
Tendina jQuery plugin v0.11.1
Copyright (c) 2015 Ivan Prignano
Released under the MIT License
*/
(function() {
var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },
__slice = [].slice;
(function($, window) {
var Tendina;
Tendina = (function() {
Tendina.prototype.defaults = {
animate: true,
speed: 300,
onHover: false,
hoverDelay: 0,
activeMenu: null
};
function Tendina(el, options) {
this._eventHandler = __bind(this._eventHandler, this);
this.options = $.extend({}, this.defaults, options);
this.$el = $(el);
this.elSelector = this._getSelector(this.$el);
this.$el.addClass('tendina');
this.linkSelector = "" + this.elSelector + " a";
this.$listElements = $(this.linkSelector).parent('li');
this._hideSubmenus();
this.mouseEvent = this.options.onHover === true ? 'mouseenter.tendina' : 'click.tendina';
this._bindEvents();
if (this.options.activeMenu !== null) {
this._openActiveMenu(this.options.activeMenu);
}
}
Tendina.prototype._bindEvents = function() {
return $(document).on(this.mouseEvent, this.linkSelector, this._eventHandler);
};
Tendina.prototype._unbindEvents = function() {
return $(document).off(this.mouseEvent);
};
Tendina.prototype._getSelector = function(el) {
var elId, firstClass, _ref;
firstClass = (_ref = $(el).attr('class')) != null ? _ref.split(' ')[0] : void 0;
elId = $(el).attr('id');
if (elId !== void 0) {
return "#" + elId;
} else {
return "." + firstClass;
}
};
Tendina.prototype._isFirstLevel = function(targetEl) {
if ($(targetEl).parent().parent().hasClass('tendina')) {
return true;
}
};
Tendina.prototype._eventHandler = function(event) {
var targetEl;
targetEl = event.currentTarget;
if (this._hasChildren(targetEl) && this._IsChildrenHidden(targetEl)) {
event.preventDefault();
if (this.options.onHover) {
return setTimeout((function(_this) {
return function() {
if ($(targetEl).is(':hover')) {
return _this._openSubmenu(targetEl);
}
};
})(this), this.options.hoverDelay);
} else {
return this._openSubmenu(targetEl);
}
} else if (this._isCurrentlyOpen(targetEl) && this._hasChildren(targetEl)) {
event.preventDefault();
if (!this.options.onHover) {
return this._closeSubmenu(targetEl);
}
}
};
Tendina.prototype._openSubmenu = function(el) {
var $openMenus, $targetMenu;
$targetMenu = $(el).next('ul');
$openMenus = this.$el.find('> .selected ul').not($targetMenu).not($targetMenu.parents('ul'));
$(el).parent('li').addClass('selected');
this._close($openMenus);
this.$el.find('.selected').not($targetMenu.parents('li')).removeClass('selected');
this._open($targetMenu);
if (this.options.openCallback) {
return this.options.openCallback($(el).parent());
}
};
Tendina.prototype._closeSubmenu = function(el) {
var $nestedMenus, $targetMenu;
$targetMenu = $(el).next('ul');
$nestedMenus = $targetMenu.find('li.selected');
$(el).parent().removeClass('selected');
this._close($targetMenu);
$nestedMenus.removeClass('selected');
this._close($nestedMenus.find('ul'));
if (this.options.closeCallback) {
return this.options.closeCallback($(el).parent());
}
};
Tendina.prototype._open = function($el) {
if (this.options.animate) {
return $el.stop(true, true).slideDown(this.options.speed);
} else {
return $el.show();
}
};
Tendina.prototype._close = function($el) {
if (this.options.animate) {
return $el.stop(true, true).slideUp(this.options.speed);
} else {
return $el.hide();
}
};
Tendina.prototype._hasChildren = function(el) {
return $(el).next('ul').length > 0;
};
Tendina.prototype._IsChildrenHidden = function(el) {
return $(el).next('ul').is(':hidden');
};
Tendina.prototype._isCurrentlyOpen = function(el) {
return $(el).parent().hasClass('selected');
};
Tendina.prototype._hideSubmenus = function() {
return this.$el.find('ul').hide();
};
Tendina.prototype._showSubmenus = function() {
this.$el.find('ul').show();
return this.$el.find('li').addClass('selected');
};
Tendina.prototype._openActiveMenu = function(element) {
var $activeMenu, $activeParents;
$activeMenu = element instanceof jQuery ? element : this.$el.find(element);
$activeParents = $activeMenu.closest('ul').parents('li').find('> a');
if (this._hasChildren($activeParents) && this._IsChildrenHidden($activeParents)) {
$activeParents.next('ul').show();
} else {
$activeMenu.next('ul').show();
}
$activeMenu.parent().addClass('selected');
return $activeParents.parent().addClass('selected');
};
Tendina.prototype.destroy = function() {
this.$el.removeData('tendina');
this._unbindEvents();
this._showSubmenus();
this.$el.removeClass('tendina');
return this.$el.find('.selected').removeClass('selected');
};
Tendina.prototype.hideAll = function() {
return this._hideSubmenus();
};
Tendina.prototype.showAll = function() {
return this._showSubmenus();
};
return Tendina;
})();
return $.fn.extend({
tendina: function() {
var args, option;
option = arguments[0], args = 2 <= arguments.length ? __slice.call(arguments, 1) : [];
return this.each(function() {
var $this, data;
$this = $(this);
data = $this.data('tendina');
if (!data) {
$this.data('tendina', (data = new Tendina(this, option)));
}
if (typeof option === 'string') {
return data[option].apply(data, args);
}
});
}
});
})(window.jQuery, window);
}).call(this);
/*font size ss*/
/*font size ss*/
.ss {
font-size:65%;
line-height:1.6em;
}
.ss, x:-moz-any-link { /* FireFox 2 */
font-size:65%;
line-height:1.5em;
}
.ss, x:-moz-any-link, x:default { /* FireFox 3 */
font-size:65%;
line-height:1.55em;
}
*+html .ss { /* IE 7 */
font-size:65%;
line-height:1.5em;
}
* html .ss { /* IE 6 */
font-size:65%;
line-height:1.5em;
}
/*font size s*/
.s {
font-size:84%;
line-height:1.45em;
}
.s, x:-moz-any-link { /* FireFox 2 */
font-size:84%;
line-height:1.45em;
}
.s, x:-moz-any-link, x:default { /* FireFox 3 */
font-size:84%;
line-height:1.4em;
}
*+html .s { /* IE 7 */
font-size:80%;
line-height:1.45em;
}
* html .s { /* IE 6 */
font-size:75%;
line-height:1.5em;
}
/*font size m*/
.m {
font-size:86%;
line-height:1.6em;
}
.m, x:-moz-any-link { /* FireFox 2 */
font-size:86%;
line-height:1.6em;
}
.m, x:-moz-any-link, x:default { /* FireFox 3 */
font-size:86%;
line-height:1.6em;
}
*+html .m { /* IE 7 */
font-size:98%;
line-height:1.6em;
}
* html .m { /* IE 6 */
font-size:98%;
letter-spacing:-0.03em;
line-height:1.6em;
}
/*font size L*/
.L {
font-size:112%;
line-height:1.5em;
}
.L, x:-moz-any-link { /* FireFox 2 */
font-size:108%;
line-height:1.5em;
}
.L, x:-moz-any-link, x:default { /* FireFox 3 */
font-size:108%;
line-height:1.5em;
}
*+html .L { /* IE 7 */
font-size:104%;
line-height:1.5em;
}
* html .L { /* IE 6 */
font-size:104%;
letter-spacing:-0.03em;
line-height:1.55em;
}
/*font size LL*/
.LL {
font-size:120%;
line-height:1.6em;
}
.LL, x:-moz-any-link { /* FireFox 2 */
font-size:120%;
line-height:1.5em;
}
.LL, x:-moz-any-link, x:default { /* FireFox 3 */
font-size:119.9%;
line-height:1.5em;
}
*+html .LL { /* IE 7 */
font-size:120%;
line-height:1.5em;
}
* html .LL { /* IE 6 */
font-size:116%;
letter-spacing:-0.1em;
line-height:1.55em;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment