@charset "utf-8";

/* ----------------------------------------------------------------------------------------

#01　基本設定

#02　全体枠

#03　ヘッダー

#04　グローバルナビゲーション

#05　フッター

#06　サイドコンテンツ

#07　コンテンツ

---------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------

#01　基本設定

---------------------------------------------------------------------------------------- */
/* リセット */
h1, h2, h3, h4, h5, h6, p, a, address, rem, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: inherit;
	font-weight: normal;
	font-size: 100%;
	font-family: inherit;
	text-align: left;
}
body {
	margin: 0;
	padding: 0;
	/*font-size: 95%;*/
	font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	color: #0a0a0a;
	background: #FFFFFF;
}

img {
	border: 0;
	vertical-align: bottom;
}
input {
	margin: 0;
	padding: 0;
	font-size: 100%;
}
input[type="text"]{
	width: calc(100% - 20px);
	padding: 4px 8px;
	line-height: 200%;
}

textarea {
	width: calc(100% - 16px);
	margin: 0;
	padding: 8px;
	font-size: 100%;
	line-height: 130%;
}
ul li {
	list-style-type: none;
}


/* リンク */
a {
	color: #81a8ee;
}
a:hover {
	color: #ff7200;
}
/* 文字色 */
.color_red {
	color: #c80000;
}
.color_green {
	color: #097C25;
}
/* 文字スタイル */
.fw_normal {
	font-weight: normal;
}
.small {
	font-size: 80%;
}
.center {
	text-align: center;
}



/* ----------------------------------------------------------------------------------------

#02　全体枠

---------------------------------------------------------------------------------------- */
#wrap {
	width: 100%;
	height: 100%;
	background: url(../images/wrap_bg.gif) 0 0 repeat-x;
}
#header, form {
	max-width: 780px;
	overflow: hidden;
	margin: 0 auto;
}
/* ----------------------------------------------------------------------------------------

#03　ヘッダー

---------------------------------------------------------------------------------------- */
#header {
	position: relative;
	height: 91px;
}
#header h1 {
	margin-top: 20px;
}
#header_add_favorite {
	position: absolute;
	right: 0;
	bottom: 21px;
	vertical-align: top;
}
#header_add_favorite a {
	display: block;
	width: 180px;
	height: 20px;
	line-height: 20px;
	background: url(../images/add_favorite_btn.gif) 0 0 no-repeat;
	text-indent: -1000rem;
}
#text_sw {
	position: absolute;
	right: 190px;
	bottom: 21px;
	text-align: right;
	font-size: 10pt;
	line-height: 100%;
}
#text_sw img {
	margin-left: 4px;
}



@media (max-width: 767px) {
	h1 {
		padding-left: 8px;
	}
	#header_add_favorite {
		top: 60px;
		right: 8px;
		bottom: auto;
	}
	#text_sw {
		top: 32px;
		right: 8px;
		bottom: auto;
	}
}

/* ----------------------------------------------------------------------------------------

#04　コンテンツ

---------------------------------------------------------------------------------------- */

#content_wrap {
	max-width: 780px;
	margin: 0 auto;
}
#content_wrap > div,
#content_wrap form > div {
	margin: 0 16px 16px;
}

h2 {
	margin: 16px;
	font-size: 1.3rem;
	font-weight: bold;
}
#content_wrap > p {
	margin: 0 16px 8px;
}

h3 {
	height: 30px;
	margin: 0 0 16px;
	padding: 0;
	border-bottom: 3px solid #efefef;
}
h3 span {
	height: 30px;
	display: inline-block;
	padding: 0 16px 0;
	font-size: 1.2rem;
	font-weight: bold;
	border-bottom: 3px solid #36799c;
}


p {
	font-size: 0.9rem;
}
form> p {
	margin: 0 16px 8px;
}
form> p.alart_text {
	color: #c80000;
}

/* 休暇等、重要なお知らせ */
.notice_wrap{
	border: 3px solid #C00000;
	padding: 12px 12px 20px;
	margin: 16px 16px 24px;
	box-sizing: border-box;
}

.notice_wrap h4{
	font-size: 24px;
	color: #C00000;
	font-weight: bold;
	text-align: center;
	margin-bottom: 8px;
}

.notice_wrap p{
	color: #C00000;
	font-size: 16px;
}

/*お知らせ*/
.info {
	margin: 16px 16px;
}
.info .title {
	padding: 16px;
	background-color: #efefef;
	font-size: 0.9rem;
	font-weight: bold;
}
.info .info_content {
	display: none;
	padding: 16px;
	border: 1px solid #efefef;
}
.info .info_content p {
	margin-bottom: 8px;
}

/*アコーディオン*/
.info .title {
	position: relative;
}
/* 縦線 */
.info .title::before {
	background: #111; /* 線の色 */
	content: "";
	height: 2px; /* 線の太さ */
	position: absolute;
	right: 25px;
	top: 50%; /* 線の位置を縦中央に */
	transform: rotate(90deg); /* 線を縦に */
	transition: transform .3s ease-in-out;
	width: 15px; /* 線の幅 */
}
/* 横線 */
.info .title::after {
	background: #111; /* 線の色 */
	content: "";
	height: 2px; /* 線の太さ */
	position: absolute;
	right: 25px;
	top: 50%; /* 線の位置を縦中央に */
	transition: opacity .3s ease-in-out;
	width: 15px; /* 線の幅 */
}
/* 縦線(クリック後) */
.info .title.open::before {
	transform: rotate(180deg);
}
/* 横線(クリック後) */
.info .title.open::after {
	opacity: 0;
}


/*お知らせ欄の修正について*/
.info2 {
	margin: 0 16px 16px;
	padding: 16px;
	background-color: #FFE4E4;
}
.info2 .title {
	margin: 0 0 16px;
	text-align: center;
	font-weight: bold;
}
.info2 .link {
	margin: 16px 0 0;
	background: #c80000;
	border-radius: 100vh;
	text-align: center;
}
.info2 .link a {
	display: block;
	line-height: 300%;
	text-decoration: none;
	text-align: center;
	color: #fff;
}
.info2 .info_content p {
	margin-bottom: 8px;
}


/* お客様情報 */
.customer {
	margin: 0 16px 8px;
}
.customer dt {
	margin-bottom: 8px;
}
.customer dd {
	margin-bottom: 16px;
	font-size: 0.8rem;
}
.customer dd input {
	width: calc(100% - 18px) !important;
}

select {
	height: 30px;
}

/* 反映希望日 */
.day, .month {
	width: 60px;
	text-align: center;
}

/* 必須 */
span.reauired {
	margin-right: 4px;
	padding: 3px 12px;
	border-radius: 100vh;
	vertical-align: middle;
	background: #c80000;
	font-size: 0.7rem;
	color: #fff;
}
/* 任意 */
span.reauired_not {
	margin-right: 4px;
	padding: 3px 12px;
	border-radius: 100vh;
	vertical-align: middle;
	background: #36799c;
	font-size: 0.7rem;
	color: #fff;
}
/* 注釈 */
.annotation {
	font-size: 0.7rem;
	text-align: right;
	color: #AAAAAA;
}
@media screen and (min-width: 960px) {
	p + p.annotation {
		margin-top: -16px;
	}
}



/* 無料更新作業について */
table.updateinfo {
	margin-bottom: 8px;
	border-collapse: collapse;
}
table.updateinfo th,
table.updateinfo td {
	padding: 4px;
	border: 1px solid #aaa;
	border-collapse: collapse;
	font-size: 0.8rem;
}
table.updateinfo th {
	background: #ccc;
	text-align: center;
}
table.updateinfo tr:first-child th:first-child {
    border: none;
	background: none;
}


/*更新サイト,更新ページ,素材データ*/
.info3 {
	margin: 16px;
}
.info3 .title {
	padding: 16px;
	background-color: #36799c;
	font-size: 0.9rem;
	font-weight: bold;
	color: #fff;
}
.info3 .info_content {
	padding: 16px;
	border: 1px solid #36799c;
	background-color: #d7e8f0;
}
.info3 .info_content p {
	margin-bottom: 8px;
}
.info3 ul {
	width: 100%;
	margin: 0 0 8px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
.info3 ul li {
	margin: 0;
	padding: 0;
	display: block;
	width: 50%;
	font-size: 0.8rem;
	line-height: 200%;
}
.info3 input,
.info3 textarea {
	border: none;
}
@media screen and (min-width: 960px) {
	.info3 ul li {
		margin: 0;
		padding: 0;
		display: block;
		width: 33.3%;
		font-size: 0.8rem;
		line-height: 200%;
	}
}





/* 素材データ各パーツ */
.data_upload {
	margin: 0 0 16px;
}
.data_upload p {
	margin-bottom: 4px;
}


/* 追加ボタン */
#koushin_btn {
	padding: 0 16px;
}
#koushin_btn .center {
	font-size: 0.8rem;
}
.addbutton {
	position: relative;
	margin: 16px 0 0;
	background: #36799c;
	border-radius: 100vh;
	text-align: center;
	line-height: 300%;
	color: #fff;
}
/* 縦線 */
.addbutton::before {
	background: #fff; /* 線の色 */
	content: "";
	height: 2px; /* 線の太さ */
	position: absolute;
	right: 25px;
	top: 50%; /* 線の位置を縦中央に */
	transform: rotate(90deg); /* 線を縦に */
	transition: transform .3s ease-in-out;
	width: 15px; /* 線の幅 */
}
/* 横線 */
.addbutton::after {
	background: #fff; /* 線の色 */
	content: "";
	height: 2px; /* 線の太さ */
	position: absolute;
	right: 25px;
	top: 50%; /* 線の位置を縦中央に */
	transition: opacity .3s ease-in-out;
	width: 15px; /* 線の幅 */
}
.koushin_2,
.koushin_3,
.koushin_4,
.koushin_5 {
	display: none;
}

.file_6,
.file_7,
.file_8,
.file_9,
.file_10 {
	display: none;
}

/* 個人情報同意する */
.personalinformation {
	margin: 0 16px 8px;
}
.agree_chk {
	margin: 16px 0;
	font-size: 0.8rem;
}
.agree_chk p {
	margin-bottom: 8px;
}

/* 送信ボタン */
#submit_btn_area {
	margin: 0 16px 16px !important;
}
#submit_btn {
	position: relative;
	width: 100%;
	border: none;
	font-size: 0.9em;
}
#submit_btn:disabled{
	background-color: #aaa;
}
#submit_btn_area p {
	text-align: center;
}
.arrow {
	position: relative;
}
.arrow::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 33px;
	right: 20px;
	transform:rotate(45deg);
	pointer-events: none;
}

/* エラー表示 */
#errorMessage, #errorMessage2, #errorMessage3 ,#errorMessage4 {
	color: #c80000;
	font-size: 0.8rem;
}


/* === フォーム確認 === */
table.form_check {
	width: calc(100% - 32px);
	margin: 0 16px 16px;
    word-break: break-all;
	border-collapse: collapse;
}
table.form_check tr + tr th,
table.form_check tr + tr td {
	border-top: 1px solid #fff;
}
table.form_check th {
	width: 40%;
	padding: 8px 8px;
	background-color: #36799c;
	font-size: 0.8rem;
	font-weight: bold;
	color: #fff;
}
table.form_check td {
	padding: 8px 8px;
	font-size: 0.8rem;
	background-color: #d7e8f0;
}
table.form_check td p {
	font-size: 0.8rem;
}

body.err2 dl dt,
body.conf dl dt {
	font-weight: bold;
	font-size: 0.8em;
}
body.err2 dl dd,
body.conf dl dd {
	overflow-wrap : break-word;
	font-size: 0.8em;
}
body.err2 dl dd+dt,
body.conf dl dd+dt {
	margin-top: 8px;
}

/* 戻るボタン */
.backbutton a {
	display: block;
	margin: 16px 0 0;
	border: 1px solid #666;
	border-radius: 100vh;
	text-align: center;
	line-height: 300%;
	text-decoration: none;
}


/* === THXページ === */
body.thx #topbutton {
	position: relative;
	margin: 16px 0 0;
	background: #36799c;
	border-radius: 100vh;
	text-align: center;
	line-height: 300%;
}
body.thx #topbutton a {
	display: block;
	color: #fff;
	text-decoration: none;
	text-align: center;
}
body.thx .arrow::after {
	top: 17px !important;
}




/* ----------------------------------------------------------------------------------------

#05　フッター

---------------------------------------------------------------------------------------- */
#footer {
	background: #0058c2;
}
#footer .pagetop {
}
#footer .pagetop a {
}
#footer #copyright {
	padding: 20px 0;
	color: #93b8e5;
	text-align: center;
	font-size: 11px;
}



/* ----------------------------------------------------------------------------------------

#99　エラー画面

---------------------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------------------

#99　ロールオーバー処理

---------------------------------------------------------------------------------------- */
#header_add_favorite a:hover, #footer .pagetop a:hover {
	background-position: 100% 100%;
}
