@charset "utf-8";

a {
	text-decoration: none;
}

.PC {
	display: block;
}

.PC_in {
	display: inline-block
}

.SP {
	display: none;
}

a:hover,
#calcListBox form #submit:hover {
	opacity: 0.8;
}

body {}

#loginBox {
	background: url(../images/background.png) #fff;
	background-size: contain;
}

header {
	display: flex;
	padding: 20px 6%;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 10px;
	width: 88%;
	height: 80px;
	background: #fff;
}


header a {
	color: #fff;
	text-decoration: none;
	position: absolute;
	left: 2%;
}

header img {
	width: 103px;
}

/*h1 {
	    color: #fff;
    padding-left: 15px;
    font-size: 18px;
    line-height: 120px;
}*/

.lineBox img {
	width: 100%;
}


#content {
	width: 1280px;
	background: #fff;
	margin: 0 auto;
	padding-bottom: 70px;
	margin-top: -260px;
	position: relative;
	border-radius: 10px;
	border: 6px solid #D7D7D7;
	box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.25);
	margin-bottom: 100px;
}

.title2 img {
	width: 700px;
	max-width: 100%;
}

/* 調整用のカスタムプロパティ（必要なら数値だけ触ればOK） */
:root {
	/* タイトルの縦位置（帯の高さに対する％）。上寄せなら 24〜32% で微調整 */
	--title-top: 28%;
	/* 帯と白カードの重なり量。画面幅に応じて 40px〜140px で可変 */
	--overlap: clamp(40px, 8vw, 140px);
}

.hero {
	position: relative;
	width: 100%;
	margin: 0;
	/* 帯直後の隙間は作らない */
}

.hero__bg {
	display: block;
	width: 100%;
	height: auto;
	/* 画像比率で自動スケール */
}

/* 重ねるレイヤー */
.hero__inner {
	position: absolute;
	left: 50%;
	top: var(--title-top);
	transform: translate(-50%, -50%);
	/* 横中央、縦は%基準の上寄り */
	width: min(94%, 1620px);
	display: grid;
	grid-template-columns: auto 1fr;
	/* 左：戻る / 右：タイトル */
	align-items: center;
	gap: clamp(12px, 2vw, 28px);
}

/* 戻るボタン：帯の左寄せ感を出すため、内側から少し押し出す */
.hero__back img {
	max-width: 186px;
	height: auto;
	display: block;
}

/* タイトルは右グリッドで中央寄せ */
.hero__title {
	justify-self: center;
	max-width: 545px;
	width: 100%;
	height: auto;
}

/* 下の白カードを帯に食い込ませて詰める */
.contentWrap {
	--overlap-plus: 20px;
	margin-top: calc(-1 * (var(--overlap) + var(--overlap-plus)));
}





@media screen and (max-width: 479px) {

	/*ウィンドウ幅が最大479pxまでの場合に適用*/
	header a img {
		width: 90px;
	}

	.PC {
		display: none;
	}

	.PC_in {
		display: none;
	}

	.SP {
		display: block;
	}


}

#content .title1 {
	text-align: center;
	padding-top: 100px;
}

#content .title2 {
	text-align: center;
	padding-top: 70px;
}


form {
	width: 470px;
	margin: 65px auto 0;
}

form p {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 24px;
}

form p span {
	margin-right: 15px;
	font-weight: bold;
	font-size: 16px;
	width: 10%;
}

input {
	padding-left: 2%;
	width: 95%;
	max-width: 415px;
	height: 52px;
	border: 2px solid #a9a9a9;
}

input.btn_submit {
	background-image: url("../images/btn_login.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 442px;
	border: none;
	padding: 0;
	cursor: pointer;
	appearance: none;
	position: relative;
	left: 50%;
	transform: translate(-50%, 0%);
	margin-top: 64px;
	color: transparent;
	-webkit-text-fill-color: transparent;
	text-shadow: none;
}

input.btn_submit:hover {
	opacity: 0.8;
}

.error {
	text-align: center;
	color: #f00;
	margin-top: 15px;
}


/*listBox*/
#listBox #content .title {
	text-align: center;
	padding-top: 42px;
}

#listBox ul {
	background: url(../images/img_list.png) no-repeat center;
	background-size: contain;
	padding-top: 10px;
	margin-top: 30px;
	margin-bottom: 30px;
}

#listBox li {
	border: 1px solid;
	width: 539px;
	height: 96px;
	border-radius: 10px;
	margin: 20px auto 0;
	background-color: #fff;
}

#listBox li:hover {
	background-color: #003c59;
}

#elf {
	background: url(../images/img_list_elf_off.png) no-repeat 0 0;
}

#elf:hover {
	background: url(../images/img_list_elf_on.png) no-repeat 0 0;
}

#forward {
	background: url(../images/img_list_forward_off.png) no-repeat 0 0;
}

#forward:hover {
	background: url(../images/img_list_forward_on.png) no-repeat 0 0;
}

#giga {
	background: url(../images/img_list_giga_off.png) no-repeat 0 0;
}

#giga:hover {
	background: url(../images/img_list_giga_on.png) no-repeat 0 0;
}

#como {
	background: url(../images/img_list_como_off.png) no-repeat 0 0;
}

#como:hover {
	background: url(../images/img_list_como_on.png) no-repeat 0 0;
}

#listBox li a {
	display: block;
	width: 100%;
	height: 100%;
}

.forgot {
	text-align: center;
	margin-top: 35px;
}


#forgotAcctBox h1 {
	color: #333;
	text-align: center;
	padding-top: 80px;
	font-size: 18px
}

#forgotAcctBox .text {
	color: #333;
	text-align: center;
	margin-top: 10px;
}

#forgotAcctBox input.btn_submit {
	width: 250px;
	height: 60px;
	line-height: 66px;
	margin-top: 50px;
}

#forgotAcctBox .topBtn {
	margin-top: 40px;
}

#forgotAcctBox .topBtn a {
	cursor: pointer;
	display: block;
	border: none;
	width: 300px;
	height: 76px;
	line-height: 76px;
	background: #009bdb;
	text-align: center;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
	font-size: 25px;
	color: #fff;
	-webkit-appearance: none;
}


/*マイページ-----------------------------------*/
#accountBox #content {
	padding-top: 20px;
}

#accountBox h1 img {
	width: 100%;
	max-width: 737px;

}

#accountBox #userBox {
	width: 400px;
	margin: 20px auto 0;
}

#accountBox #userBox li {
	display: flex;
	justify-content: flex-start;
	font-size: 19px;
}

#accountBox #userBox li .ttl {
	color: #009bdb;
	font-size: 19px;
	margin-bottom: 10px;
	width: 40px;
}

#accountBox #userBox .name {
	color: #009bdb;
	font-size: 22px;
	margin-bottom: 10px;
}

#accountBox .line {
	margin: 20px 0;
	text-align: center;
}

#accountBox .btnList {
	margin: 20px auto 0;
}

#accountBox .btnList p {
	margin-top: 30px;
}

#accountBox .btnList .text {
	margin-top: 15px;
	margin-bottom: 17px;
	font-size: 17px;
	text-align: center;
}

#accountBox .btnList .text span {
	color: #f00;
}

#accountBox .btn_submit {
	cursor: pointer;
	display: block;
	border: none;
	width: 470px;
	height: 76px;
	line-height: 76px;
	background: #009bdb;
	text-align: center;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
	font-size: 25px;
	color: #fff;
	-webkit-appearance: none;
}

#accountBox .masterBtn {
	cursor: pointer;
	display: block;
	border: none;
	width: 470px;
	height: 76px;
	line-height: 76px;
	background: #c7eafc;
	border: 3px solid #009bdb;
	text-align: center;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
	font-size: 25px;
	color: #009bdb;
	-webkit-appearance: none;
}

#accountBox .masterLink {
	margin-top: 40px;
}

#accountBox .noticeBox {
	width: 600px;
	margin: 60px auto 0;
}

#accountBox .noticeBox h2 {
	color: #009bdb;
	font-size: 23px;
	font-weight: bold;
}

#accountBox .noticeBox ul {
	border: 1px solid #333;
	height: 237px;
	overflow: auto;
	padding: 0 5px;
}

#accountBox .noticeBox ul li {
	margin: 10px auto;
	font-size: 17px;
	border-bottom: 0.25px solid #009bdb;
	margin-bottom: 10px;
	padding-bottom: 3px;
}

#accountBox .noticeBox ul li a {
	color: #007bff;
	text-decoration: underline;
}

@media screen and (max-width: 479px) {

	/*ウィンドウ幅が最大479pxまでの場合に適用*/
	#accountBox h1 {
		width: 95%;
		font-size: 20px;
	}

	#accountBox #userBox,
	#accountBox .line img,
	#accountBox .btn_submit,
	#accountBox .holdingBox {
		width: 95%;
	}

	#accountBox #userBox li {
		font-size: 17px;
	}

	#accountBox .btnList .text {
		width: 95%;
		margin: 15px auto;
		font-size: 13px;
	}

	#accountBox .holdingBox ul {
		height: 135px;
	}

	#accountBox .noticeBox {
		width: 98%;
	}
}


/*パスワード変更-----------------------------------*/
#passwordChange h1 {
	color: #333;
	text-align: center;
	padding-top: 80px;
	font-size: 18px;
}

#passwordChange dt {
	margin-top: 20px;
}

#passwordChange input {
	margin-top: 5px;
}

#passwordChange #clickBtn {
	margin-top: 40px;
	font-size: 24px;
}

#passwordChange .errorTxt {
	font-size: 15px;
	color: #f00;
	margin-top: 5px;
}

#passwordChange .nobtn {
	background: #4c4c4c;
}

#passwordChange .errorMessageBox {
	color: #333;
	text-align: center;
	padding-top: 80px;
	font-size: 18px;
}

#passwordChange .topBtn {
	margin-top: 40px;
}

#passwordChange .topBtn a {
	cursor: pointer;
	display: block;
	border: none;
	width: 300px;
	height: 76px;
	line-height: 76px;
	background: #009bdb;
	text-align: center;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
	font-size: 25px;
	color: #fff;
	-webkit-appearance: none;
}

#passwordChangeActBox h1 {
	color: #333;
	text-align: center;
	padding-top: 80px;
	font-size: 18px;
}

#passwordChangeActBox .topBtn {
	margin-top: 40px;
}

#passwordChangeActBox .topBtn a {
	cursor: pointer;
	display: block;
	border: none;
	width: 300px;
	height: 76px;
	line-height: 76px;
	background: #009bdb;
	text-align: center;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
	font-size: 25px;
	color: #fff;
	-webkit-appearance: none;
}


/*マスター管理-----------------------------------*/
#masterKanriBox #content {
	padding-top: 20px;
}

#masterKanriBox h1 {
	color: #009bdb;
	font-size: 26px;
	font-weight: bold;
	border: 2px solid #009bdb;
	border-radius: 30px;
	width: 750px;
	text-align: center;
	padding: 5px 0;
	height: 50px;
	line-height: 55px;
	margin: 20px auto 0px;
}

#masterKanriBox .btnList p {
	margin-top: 20px;
}

#masterKanriBox .btn_submit {
	cursor: pointer;
	display: block;
	border: none;
	width: 470px;
	height: 76px;
	line-height: 76px;
	background: #009bdb;
	text-align: center;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
	font-size: 25px;
	color: #fff;
	-webkit-appearance: none;
}

@media screen and (max-width: 479px) {

	/*ウィンドウ幅が最大479pxまでの場合に適用*/
	#masterKanriBox h1,
	#masterKanriBox .btn_submit {
		width: 95%;
	}
}



/*ユーザ登録-----------------------------------*/
#userBox #content {
	padding-top: 1px;
	padding-bottom: 0px;
}

#userBox h1 {
	color: #009bdb;
	font-size: 26px;
	font-weight: bold;
	border: 2px solid #009bdb;
	border-radius: 30px;
	width: 750px;
	text-align: center;
	padding: 5px 0;
	height: 50px;
	line-height: 55px;
	margin: 20px auto 0px;
}

#userBox form {
	width: 470px;
	margin-top: 0px;
	padding-bottom: 80px;
}

#userBox #csvFile {
	border: none;
}

#userBox .submit,
#userBox .btnLink {
	cursor: pointer;
	display: block;
	border: none;
	width: 470px;
	height: 76px;
	line-height: 76px;
	background: #009bdb;
	text-align: center;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
	font-size: 25px;
	color: #fff;
}

#userBox .btnLink {
	margin-top: 30px;
}

#userBox .text_r {
	text-align: center;
	margin-top: 20px;
	color: #f00;
	padding-bottom: 40px;
}

#userBox .messBox {
	width: 780px;
	margin: 25px auto 0px;

}

#userBox .messBox p {
	line-height: 1.4;
	font-size: 16px;
	margin-top: 5px;
}

#userBox .messBox p span {
	color: #f00;
}

#userBox .messBox p.ttl {
	color: #000;
	font-size: 20px;
}

#userBox .messBox p a {
	color: #007bff;
	text-decoration: underline;
}

#userBox .atn {
	text-align: center;
	margin-top: 60px;
	font-size: 16px;
}

#userBox .errorText {
	text-align: center;
	margin-top: 30px;
	font-size: 18px;
	line-height: 1.5;
}

#userBox .resultBox {
	text-align: center;
}

#userBox .resultBox h2 {
	text-align: center;
	margin-top: 30px;
	font-size: 18px;
	line-height: 1.5;
	font-weight: bold;
}

#userBox .resultBox p {
	font-size: 16px;
	line-height: 1.5;
}

#userBox #CDVdownload a {
	display: block;
	border: none;
	width: 470px;
	height: 76px;
	line-height: 76px;
	background: #009bdb;
	text-align: center;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
	font-size: 25px;
	color: #fff;
	margin-top: 40px;
}

#userBox #CDVdownload a {
	color: #fff;
}

@media screen and (max-width: 479px) {

	/*ウィンドウ幅が最大479pxまでの場合に適用*/
	#userBox h1 {
		width: 95%;
	}

	#userBox .messBox,
	#userBox form {
		width: 95%;
	}

	#userBox .submit,
	#userBox .btnLink {
		width: 95%;
		-webkit-appearance: none;
	}
}



/*お知らせ一覧-----------------------------------*/
#noticeListBox {}

#noticeListBox header {
	min-width: 100%;
}

#noticeListBox #content {
	padding-top: 20px;
	position: relative;
	width: 100%;
	max-width: 1170px;
}

/*#noticeListBox #content {
    padding-top: 20px;
    position: relative;
}*/
#noticeListBox h1 {
	color: #009bdb;
	font-size: 20px;
	font-weight: bold;
	border: 2px solid #009bdb;
	border-radius: 15px;
	width: 600px;
	text-align: center;
	padding: 5px 0;
	margin: 20px auto 0px;
}

#noticeListBox .NewBtn {
	position: absolute;
	right: 2%;
	cursor: pointer;
	display: block;
	border: none;
	width: 160px;
	height: 55px;
	line-height: 55px;
	background: #009bdb;
	text-align: center;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
	font-size: 25px;
	color: #fff;
	-webkit-appearance: none;
}

#noticeListBox .NewBtn a {
	color: #fff;
}

#noticeListBox table {
	width: 96%;
	margin: 0 auto;
	table-layout: fixed;
}

#noticeListBox table td,
#noticeListBox table th {
	padding: 3px;
	width: 30px;
	height: 25px;
	white-space: nowrap;
	width: 100px;
	font-size: 12px;
	white-space: break-spaces;
	word-break: break-all;
	font-size: 10px;
	width: 100%;
}

#noticeListBox table th {
	color: #fff;
	background-color: #009bdb;
	text-align: center;
	font-size: 13px;
	font-weight: normal;
	white-space: normal;
}

#noticeListBox table td.idBox {
	width: 3%;
}


.noticeBox {
	margin-top: 70px;
}

.noticeBox h2 {
	color: #333;
	text-align: center;
	font-size: 18px;
}

.noticeBox table {
	width: 96%;
	margin: 0 auto;
}

.noticeBox table,
.noticeBox td,
.noticeBox th {
	border: 1px solid #595959;
	border-collapse: collapse;
}

.noticeBox td,
.noticeBox th {
	padding: 3px;
	width: 30px;
	height: 25px;
	white-space: nowrap;
	width: 100px;
}

.noticeBox th {
	background: #f0e6cc;

}

.noticeBox .even {
	background: #fbf8f0;
}

.noticeBox .odd {
	background: #fefcf9;
}

.noticeBox th {
	color: #495057;
	background-color: #e9ecef;
	font-weight: bold;
}

.noticeBox table .idBox {
	width: 20px;
}

.noticeBox table a {
	color: #007bff;
}

.noticeBox ul li {
	display: flex;
	justify-items: left;
}


#noticeListBox textarea {
	padding-left: 2%;
	width: 98%;
	height: 86px;
}

#noticeListBox form .text {
	margin-top: 20px;
}

#noticeListBox form input {
	margin-top: 0px;
}

#noticeListBox .btn_submit {
	margin-top: 40px;
}

#noticeListBox h2 {
	color: #333;
	text-align: center;
	padding-top: 80px;
	font-size: 18px;
}

#noticeListBox .topBtn {
	margin-top: 40px;
}

#noticeListBox .topBtn a {
	cursor: pointer;
	display: block;
	border: none;
	width: 300px;
	height: 76px;
	line-height: 76px;
	background: #009bdb;
	text-align: center;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
	font-size: 25px;
	color: #fff;
	-webkit-appearance: none;
}

@media screen and (max-width: 479px) {

	/*ウィンドウ幅が最大479pxまでの場合に適用*/
	#noticeListBox h1 {
		width: 95%;
	}
}


/*お知らせ一覧-----------------------------------*/
#calcListBox header {
	min-width: 100%;

}

#calcListBox #content {
	padding-top: 20px;
	position: relative;
	width: 100%;
	max-width: 1170px;
}

#calcListBox h1 {
	color: #009bdb;
	font-size: 26px;
	font-weight: bold;
	border: 2px solid #009bdb;
	border-radius: 30px;
	width: 750px;
	text-align: center;
	padding: 5px 0;
	height: 50px;
	line-height: 55px;
	margin: 20px auto 0px;
}

#calcListBox .NewBtn {
	position: absolute;
	right: 2%;
	cursor: pointer;
	display: block;
	border: none;
	width: 160px;
	height: 55px;
	line-height: 55px;
	background: #009bdb;
	text-align: center;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
	font-size: 25px;
	color: #fff;
	-webkit-appearance: none;
}

#calcListBox .NewBtn a {
	color: #fff;
}

.calcBox {
	margin-top: 38px;
}

.calcBox h2 {
	color: #333;
	text-align: center;
	font-size: 18px;
}

.calcBox table {
	width: 96%;
	margin: 0 auto;
}

.calcBox table,
.calcBox td,
.calcBox th {
	border: 1px solid #595959;
	border-collapse: collapse;
}

.calcBox td,
.calcBox th {
	padding: 3px;
	width: 30px;
	height: 25px;
	white-space: nowrap;
	width: 100px;
	font-size: 12px;
}

.calcBox th {
	background: #f0e6cc;
}

.calcBox table .note {
	/* white-space: pre;*/
	white-space: break-spaces;
	word-break: break-all;
	font-size: 10px;
	width: 297px;
}

.calcBox table .PDFBtn {
	background: #009bdb;
	color: #fff;
	padding: 2px 5px;
	text-align: center;
	display: block;
	width: 32px;
	margin: 0 auto;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
}

.calcBox .even {
	background: #fbf8f0;
}

.calcBox .odd {
	background: #fefcf9;
}

.calcBox th {
	color: #fff;
	background-color: #009bdb;
	text-align: center;
	font-size: 13px;
	font-weight: normal;
}

.calcBox table .idBox {
	width: 20px;
}

.calcBox table a {
	color: #007bff;
	text-decoration: underline;
}

.calcBox ul li {
	display: flex;
	justify-items: left;
}


#calcListBox textarea {
	padding-left: 2%;
	width: 98%;
	height: 86px;
}

#calcListBox form .text {
	margin-top: 20px;
}

#calcListBox form input {
	margin-top: 0px;
}

#calcListBox .btn_submit {
	margin-top: 40px;
}

#calcListBox h2 {
	color: #333;
	text-align: center;
	padding-top: 80px;
	font-size: 18px;
}

#calcListBox .topBtn {
	margin-top: 40px;
}

#calcListBox .topBtn a {
	cursor: pointer;
	display: block;
	border: none;
	width: 300px;
	height: 76px;
	line-height: 76px;
	background: #009bdb;
	text-align: center;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
	font-size: 25px;
	color: #fff;
	-webkit-appearance: none;
}

#calcListBox form {
	display: flex;
	width: 750px;
}

#calcListBox form p {
	width: 111px;
	height: 48px;
	color: #fff;
	background: #009bdb;
	text-align: center;
	line-height: 48px;
	font-size: 21px;
}

#calcListBox form input {
	width: 534px;
	height: 48px;
	border-radius: 0px 6px 6px 0px;
	margin-right: 10px;
	-webkit-appearance: textfield;
}

#calcListBox form #submit {
	width: 91px;
	border-radius: 6px;
	background: url(../images/icon_search.png) no-repeat center center #009bdb;
	margin-right: 0px;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);

}

#calcListBox .textBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#calcListBox .textBox div {
	width: 500px;
}

#calcListBox .attention {
	margin-left: 2%;
}

#calcListBox .attention a {
	color: #007bff;
}

#calcListBox .pageData {
	margin-right: 2%;
	font-size: 15px;
}

#calcListBox ul.menu {
	display: flex;
	justify-content: space-between;
	width: 900px;
	margin: 45px auto 0;
}

#calcListBox ul.menu .newMake {
	width: 40%;
	height: 60px;
}

#calcListBox ul.menu .newMake a {
	color: #fff;
	text-align: center;
	width: 100%;
	display: inline-block;
	height: 60px;
	line-height: 60px;
	font-size: 22px;
	background: #009bdb;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
}

#calcListBox ul.menu .csvBtn,
#calcListBox ul.menu .PDFBtn {
	width: 250px;
	height: 60px;
}

#calcListBox ul.menu .csvBtn a {
	color: #fff;
	text-align: center;
	width: 100%;
	display: inline-block;
	height: 60px;
	line-height: 60px;
	font-size: 22px;
	background: #009bdb;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
}

#calcListBox ul.menu .csvBtn.noBtn a {
	background: #6f6f6f;
}

#calcListBox ul.menu .PDFBtn a {
	color: #fff;
	text-align: center;
	width: 100%;
	display: inline-block;
	height: 60px;
	line-height: 60px;
	font-size: 22px;
	background: #009bdb;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
}

#calcListBox header p {
	position: absolute;
	right: 2%;
	font-size: 17px;
	color: #fff;
}


#pageList {
	display: flex;
	text-align: center;
	margin-top: 40px;
	justify-content: center;
}

#pageList li {
	border: 1px solid #333;
	margin-right: 10px;
}

#pageList li a {
	width: 100%;
	margin: 8px 10px;
	font-size: 14px;
	color: #007bff;
	font-weight: bold;
}

#pageList li span {
	width: 100%;
	margin: 8px 10px;
	font-size: 14px;
	font-weight: bold;
}

/*CSVダウンロード*/
#calcListBox h2 {
	color: #333;
	text-align: center;
	padding-top: 0px;
	font-size: 18px;
}

#calcListBox #csvDownloadBox {
	width: 500px;
	margin: 0 auto;
	background: #fff;
	padding: 20px 10px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	z-index: 99;
	display: none;
}

#calcListBox #csvDownloadBox h2 {
	font-size: 23px;
}

#calcListBox #csvDownloadBox .sub {
	text-align: center;
}

#calcListBox #csvDownloadBox ul {
	width: 95%;
	margin: 0 auto;
}

#calcListBox #csvDownloadBox li {
	display: flex;
	justify-content: left;
	align-items: center;
	margin-top: 23px;
}

#calcListBox #csvDownloadBox li p {
	width: 23%;
}

#calcListBox #csvDownloadBox li input {
	margin-top: 0px;
	background: #c7eafc;
	border-radius: 0px;
	width: 45%;
}

#calcListBox #csvDownloadBox li select {
	height: 46px;
	background: #c7eafc;
	min-width: 356px;
	width: 77%;
}

#calcListBox #csvDownloadBox .dayms {
	margin-left: 23%;
	margin-top: 10px;
	margin-bottom: -10px;
}

#calcListBox #csvDownloadBox .calendar div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 77%;
}

#calcListBox #csvDownloadBox button {
	background: #009bdb;
	color: #fff;
	padding: 2px 5px;
	text-align: center;
	display: block;
	width: 220px;
	margin: 30px auto 0;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
	border: none;
	height: 40px;
	cursor: pointer;
}

#calcListBox #csvDownloadBox button:hover {
	opacity: 0.8;
}

#calcListBox #CSVshadow {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #c6c3c3;
	top: 0;
	display: none;
}

#calcListBox .batsu {
	display: block;
	width: 30px;
	height: 30px;
	background: #d8d8d8;
	position: absolute;
	right: 4%;
	cursor: pointer;
}

#calcListBox .batsu:hover {
	opacity: 0.8;
}

#calcListBox .batsu::before,
#calcListBox .batsu::after {
	content: "";
	display: block;
	width: 100%;
	height: 6px;
	background: #000;
	transform: rotate(45deg);
	transform-origin: 0% 50%;
	position: absolute;
	top: calc(14% - 2px);
	left: 14%;
}

#calcListBox .batsu::after {
	transform: rotate(-45deg);
	transform-origin: 100% 50%;
	left: auto;
	right: 14%;
}

/*プルダウン*/
.selectDesign {
	overflow: hidden;
	position: relative;
}

.selectDesign select {
	width: 100%;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.selectDesign select::-ms-expand {
	display: none;
}

.selectDesign::before {
	position: absolute;
	top: 19px;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}


/*お知らせ一覧-----------------------------------*/
#holdingListBox {}

#holdingListBox header {
	min-width: 100%;
}

#holdingListBox #content {
	padding-top: 20px;
	position: relative;
	width: 100%;
	max-width: 1170px;
}

/*#holdingListBox #content {
    padding-top: 20px;
    position: relative;
}*/
#holdingListBox h1 {
	color: #009bdb;
	font-size: 26px;
	font-weight: bold;
	border: 2px solid #009bdb;
	border-radius: 30px;
	width: 750px;
	text-align: center;
	padding: 5px 0;
	height: 50px;
	line-height: 55px;
	margin: 20px auto 0px;
}

#holdingListBox .NewBtn {
	position: absolute;
	right: 2%;
	top: 40px;
	cursor: pointer;
	display: block;
	border: none;
	width: 160px;
	height: 55px;
	line-height: 55px;
	background: #009bdb;
	text-align: center;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
	font-size: 25px;
	color: #fff;
	-webkit-appearance: none;
}

#holdingListBox .NewBtn a {
	color: #fff;
}

#holdingListBox table {
	width: 96%;
	margin: 0 auto;
	table-layout: fixed;
}

#holdingListBox table td,
#holdingListBox table th {
	padding: 3px;
	width: 30px;
	height: 25px;
	white-space: nowrap;
	width: 100px;
	font-size: 12px;
	white-space: break-spaces;
	word-break: break-all;
	font-size: 10px;
	width: 100%;
}

#holdingListBox table th {
	color: #fff;
	background-color: #009bdb;
	text-align: center;
	font-size: 13px;
	font-weight: normal;
	white-space: normal;
}

#holdingListBox table td.idBox {
	width: 3%;
}


.holdingBox {
	margin-top: 20px;
}

.holdingBox h2 {
	color: #333;
	text-align: center;
	font-size: 18px;
}

.holdingBox table {
	width: 96%;
	margin: 0 auto;
}

.holdingBox table,
.holdingBox td,
.holdingBox th {
	border: 1px solid #595959;
	border-collapse: collapse;
}

.holdingBox td,
.holdingBox th {
	padding: 3px;
	width: 30px;
	height: 25px;
	white-space: nowrap;
	width: 100px;
}

.holdingBox th {
	background: #f0e6cc;

}

.holdingBox .even {
	background: #fbf8f0;
}

.holdingBox .odd {
	background: #fefcf9;
}

.holdingBox th {
	color: #495057;
	background-color: #e9ecef;
	font-weight: bold;
}

.holdingBox table .idBox {
	width: 20px;
}

.holdingBox table a {
	color: #007bff;
}

.holdingBox ul li {
	display: flex;
	justify-items: left;
}


#holdingListBox textarea {
	padding-left: 2%;
	width: 98%;
	height: 86px;
}

#holdingListBox form .text {
	margin-top: 20px;
}

#holdingListBox form input {
	margin-top: 0px;
}

#holdingListBox .btn_submit {
	margin-top: 40px;
}

#holdingListBox h2 {
	color: #333;
	text-align: center;
	padding-top: 80px;
	font-size: 18px;
}

#holdingListBox .topBtn {
	margin-top: 40px;
}

#holdingListBox .topBtn a {
	cursor: pointer;
	display: block;
	border: none;
	width: 300px;
	height: 76px;
	line-height: 76px;
	background: #009bdb;
	text-align: center;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
	font-size: 25px;
	color: #fff;
	-webkit-appearance: none;
}

#holdingListBox .noLine {
	border: none;
}

#holdingListBox input {
	width: 86%;
	margin-right: 3%;
}

#holdingListBox.weightTaxGennzei_change input {
	width: 81%;
}


/*ビデオ-----------------------------------*/
#videoBox #content {
	padding-top: 20px;
}

#videoBox h1 {
	color: #009bdb;
	font-size: 26px;
	font-weight: bold;
	border: 2px solid #009bdb;
	border-radius: 30px;
	width: 750px;
	text-align: center;
	padding: 5px 0;
	height: 50px;
	line-height: 55px;
	margin: 20px auto 0px;
}

#videoBox #content div {
	width: 750px;
	margin: 30px auto 0;
}

#videoBox .ttl {
	margin-top: 20px;
	font-size: 20px;
}

#videoBox #content .red {
	color: #f00;
}

#videoBox #content ul {
	display: flex;
	justify-content: left
}

#videoBox #content ul li {
	margin-right: 20px;
	margin-top: 10px;
}

#videoBox #content ul li p {
	font-size: 20px;
}

#videoBox #content ul li p a {
	color: #020bac;
	font-size: 20px;
	text-decoration: underline;
}

#videoBox #content video {
	width: 100%;
}

@media screen and (max-width: 479px) {

	/*ウィンドウ幅が最大479pxまでの場合に適用*/
	#videoBox h1,
	#videoBox #content div,
	#videoBox .btn_submit {
		width: 95%;
	}

	#videoBox #content ul {
		display: block;
	}

}



@media screen and (max-width: 479px) {

	/*ウィンドウ幅が最大479pxまでの場合に適用*/
	#holdingListBox h1 {
		width: 95%;
	}
}


@media screen and (max-width: 479px) {

	/*ウィンドウ幅が最大479pxまでの場合に適用*/
	select,
	input {
		font-size: 16px !important;
	}

	#content {
		width: 100%;
	}

	#content .title2 img {
		width: 95%;
	}

	form {
		width: 93%;
	}

	header {
		height: 60px;
		min-width: 100%;
	}

	#userBox #CDVdownload a {
		width: 90%;
		margin: 20px auto 0;
	}
}