﻿/* ボディ用 */
body {
    margin: 0;
    border: none;
    /*background-color: rgb(244, 244, 244);*/
    background-color: rgb(255, 255, 255);
    padding: 0;

    width: 100%;
    height: 100%;
    line-height: 45px;

    font-size: 24px;
    font-family: sans-serif;


	/*▼Add▼［パ］Ver.1.0.01 Date.2017.07.14 /スマホ対応/ ▼Start▼*/
    word-break:break-all;
	word-wrap: break-word;
	/*▲Add▲［パ］Ver.1.0.01 Date.2017.07.14 /スマホ対応/ ▲End▲*/
}

/* テキストボックス用 */
input[type=text] {
    border: 2px solid rgb(170, 170, 170);
    /* 角丸ボーダー */
    border-radius: 13px;
    -webkit-border-radius : 13px;
    -moz-border-radius: 13px;

    padding: 3px 10px 3px 10px;
    height: 45px;

    font-size: 1em;
}

/* パスワード用 */
input[type=password] {
    border: 2px solid rgb(170, 170, 170);
    /* 角丸ボーダー */
    border-radius: 13px;
    -webkit-border-radius : 13px;
    -moz-border-radius: 13px;

    padding: 3px 10px 3px 10px;
    height: 45px;

    font-size: 1em;
}

/* 水平の罫線用 */
hr {
    border: none;
    background-color: rgb(209, 209, 209);
    height: 2px;
}

/* ボタン（大）用 */
.big_button {
    margin-bottom: 45px;
    border: 2px solid black;
    /* 角丸ボーダー */
    border-radius: 13px;
    -webkit-border-radius : 13px;
    -moz-border-radius: 13px;
    
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 50px;

    font-size: 1em;
    font-weight: bold;
}

/* 白ボタン（大）用 */
.big_button.white {
    border-color: rgb(211, 211, 211);

    /* 背景グラデーション */
    background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: -webkit-gradient(linear, center top, center bottom, from(#fefefe), to(#f2f2f2));
    background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: linear-gradient(top, #fefefe, #f2f2f2);

    color: black;
}

/* 青ボタン（大）用 */
.big_button.blue {
    border-color: black;
    
    /* 背景グラデーション */
    background: -moz-linear-gradient(top, #5c98c2, #396b9e);
    background: -webkit-gradient(linear, center top, center bottom, from(#5c98c2), to(#396b9e));
    background: -webkit-linear-gradient(top, #5c98c2, #396b9e);
    background: linear-gradient(top, #5c98c2, #396b9e);

    color: white;
}

/*▼Add▼［パ］Ver.1.0.01 Date.2017.07.14 /スマホ対応/ ▼Start▼*/

/* ボタン（中）用 */
.mid_button {
    margin-bottom: 30px;
    border: 2px solid black;
    /* 角丸ボーダー */
    border-radius: 13px;
    -webkit-border-radius : 13px;
    -moz-border-radius: 13px;

    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 140px;
    height: 32px;

    font-size: 0.5em;
    font-weight: bold;
}
/* 白ボタン（中）用 */
button.mid_button.white {
    border-color: rgb(211, 211, 211);

    /* 背景グラデーション */
    background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: -webkit-gradient(linear, center top, center bottom, from(#fefefe), to(#f2f2f2));
    background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: linear-gradient(top, #fefefe, #f2f2f2);

    color: black;
}

/* Prevボタン用 */
button.mid_button.prev {
	position: relative;
	padding-left: 24px;
}

/* Prevボタンのアイコン用 */
button.mid_button.prev:before {
    position: absolute;
	top: 3px;
	left: 5px;
    margin: 0 0 0 0;
    background-image: url(../images/arrow_left.png);
    background-repeat: no-repeat;
    background-size: 22px 22px;
    width: 22px;
    height: 22px;
    content: "";
}

/* Nextボタン用 */
button.mid_button.next {
	position: relative;
	padding-right: 24px;
}

/* Nextボタンのアイコン用 */
button.mid_button.next:after {
    position: absolute;
	top: 3px;
	right: 5px;
    margin: 0 0 0 0;
    background-image: url(../images/arrow_right.png);
    background-repeat: no-repeat;
    background-size: 22px 22px;
    width: 22px;
    height: 22px;
    content: "";
}

/* ボタン（小）用 */
.xsmall_button {
    border: 2px solid black;
    /* 角丸ボーダー */
    border-radius: 13px;
    -webkit-border-radius : 13px;
    -moz-border-radius: 13px;

    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100px;
    height: 32px;
    font-size: 0.5em;
    font-weight: bold;
}
/* 白ボタン（小）用 */
button.xsmall_button.white {
    border-color: rgb(211, 211, 211);

    /* 背景グラデーション */
    background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: -webkit-gradient(linear, center top, center bottom, from(#fefefe), to(#f2f2f2));
    background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: linear-gradient(top, #fefefe, #f2f2f2);

    color: black;
}
/* 未読ボタン用 */
button.xsmall_button.midoku {
	position: relative;
	padding-left: 12px;
}
/* 未読ボタンのアイコン用 */
button.xsmall_button.midoku:before {
    position: absolute;
	top: 8px;
	left: 6px;
    margin: 0 0 0 0;
    background-image: url(../images/ico_midoku.gif);
    background-repeat: no-repeat;
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    content: "";
}
/*▲Add▲［パ］Ver.1.0.01 Date.2017.07.14 /スマホ対応/ ▲End▲*/

/* ボタン（小）用 */
button.small_button {
    border: 2px solid rgb(73, 73, 73);
    /* 角丸ボーダー */
    border-radius: 1em;
    -webkit-border-radius : 1em;
    -moz-border-radius: 1em;
    
    background-color: rgb(64, 64, 64);
    /*background-color: rgb(235, 235, 235);*/

    padding-right: 10px;
    
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 120px;
    height: 35px;

    text-align: right;
    
    color: white;

    font-size: 0.6em;
    font-weight: bold;
}

/* TopPageボタン用 */
button.small_button.top_page {
    position: absolute;
    top: 5px;
    left: 5px;
    padding-right: 16px;
    vertical-align:middle;
}
 
/* TopPageボタンのアイコン用 */
button.small_button.top_page:before {
    position: absolute;
    top: 4px;
    left: 4px;
    margin: 0 0 0 0;
    background-image: url(../images/home.png);
    background-repeat: no-repeat;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    content: "";
}

/* ログアウトボタン用 */
button.small_button.logout {
    position: absolute;
    top: 5px;
    right: 5px;
}
 
/* ログアウトボタンのアイコン用 */
button.small_button.logout:before {
    position: absolute;
    top: 4px;
    left: 4px;
    margin: 0 0 0 0;
    background-image: url(../images/logout.png);
    background-repeat: no-repeat;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    content: "";
}

/* 戻るボタン用 */
button.small_button.prev {
    position: absolute;
    bottom: 5px;
    left: 5px;
}
 
/* 戻るボタンのアイコン用 */
button.small_button.prev:before {
    position: absolute;
    top: 4px;
    left: 4px;
    margin: 0 0 0 0;
    background-image: url(../images/prev.png);
    background-repeat: no-repeat;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    content: "";
}

/* タイトルバー用 */
.title_bar {
    border-color: rgb(51, 51, 51);
    border-width: 1px;
    border-style: solid none solid none;

    /*background-color: rgb(40, 40, 40);*/
    background-color: rgb(244, 244, 244);
    height: 45px;
    text-align: center;
    line-height: 45px;
    vertical-align:middle;
    color: white;

    font-size: 1em;
    font-weight: bold;
}

/* コンテンツ用 */
.content_area {
    /*background-color: rgb(244, 244, 244);*/
    background-color: rgb(255, 255, 255);
    text-align: center;
}

/* マスターページのヘッダー用 */
div.header {
    z-index:9999;
    position: fixed;
    top: 0;
    left: 0;

    /*background-color: rgb(40, 40, 40);*/
    background-color: rgb(244, 244, 244);
    width: 100%;
    height: 45px;
    text-align: center;
    line-height: 45px;
    color: white;

    font-size: 1em;
    font-weight: bold;
}

/* マスターページのボディ用 */
div.body {
    background-color: rgb(244, 244, 244);
    padding: 45px 0 0 0;    /* 上下に160pxを余白を取る */
    text-align: center;
}
/* マスターページのフッター用 */
div.footer {
    z-index:9999;
    position: fixed;

    bottom: 0;
    left: 0;

    /*background-color: rgb(40, 40, 40);*/
    background-color: rgb(244, 244, 244);
    width: 100%;
    height: 45px;
}

/* 表示内容左詰め用 */
div.leftleft {
    text-align: left;
}

/* 全体中央揃え用 */
.horizontal_center {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: 90%;
    text-align: left;
}

/* 全体中央揃えのテキストボックス用 */
.horizontal_center input[type=text] {
    box-sizing: border-box;
    -moz-box-sizing: border-box;    
    width: 100%;
}

/* 全体中央揃えのパスワード用 */
.horizontal_center input[type=password] {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
}

/* 全体中央揃えの水平の罫線用 */
.horizontal_center hr {
    width: 100%;
}

/* コンボボックス用 */
.select-box select {
	position: relative;
    -webkit-appearance: none;
	-moz-appearance: none;
    
    margin: 0;

    border-color: rgb(211, 211, 211);
    border-width: 2px;
    /* 角丸ボーダー */
    border-radius: 13px;
    -webkit-border-radius : 13px;
    -moz-border-radius: 13px;
    
    /* 背景グラデーション */
    background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: -webkit-gradient(linear, center top, center bottom, from(#fefefe), to(#f2f2f2));
    background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: linear-gradient(top, #fefefe, #f2f2f2);

    padding: 3px 13px 3px 13px;
    height: 45px;
	width: 100%;
	color: black;

    font-size: 1em;
}
/* コンボボックスにアイコンを配置するためのラベル用 */
.select-box label {
	position: relative;
}
/* ラベルの背景（コンボボックスのアイコン） */
.select-box label:after {
	display: block;
	position: absolute;
	top: 0;
	right: 13px;
	margin-top: 2px;
	background: url(../images/arrow_down.png) 0 0 no-repeat;
	background-size: 24px;
	width: 24px;
	height: 24px;
	content: " ";
	pointer-events: none;
}

/* チェックボックス用 */
input[type=checkbox] {
	-webkit-appearance: none;
	-moz-appearance: none;

	position: relative;
	margin-right: 5px;

    border: 1px solid rgb(226, 226, 226);
    /* 角丸ボーダー */
	border-radius: 3px;
	-webkit-border-radius : 3px;
	-moz-border-radius: 3px;

    background-color: rgb(217, 217, 217);
	
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 26px;
	height: 26px;
    
	vertical-align: -8px;
    /*vertical-align: central;*/
}
/* チェックボックスのチェック状態 */
input[type=checkbox]:checked {
	border: 1px solid rgb(124, 175, 211);
	background-color: rgb(67, 138, 186);
}
/* チェックマーク */
input[type=checkbox]:checked:before {
    display: block;
    position: absolute;
    left: 1px;
    top: 16px;

    background: #ffffff;
    width: 10px;
    height: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: right center;
    content: "";
}
/* チェックマーク */
input[type=checkbox]:checked:after {
    display: block;
    position: absolute;
    left: 9px;
    top: 16px;

    background: #ffffff;
    width: 16px;
    height: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    -webkit-transform: rotate(-53deg);
    -webkit-transform-origin: left center;
    content: "";
}

/*▼Add▼［パ］Ver.1.0.01 Date.2017.07.14 /スマホ対応/ ▼Start▼*/
/* テキストボックス用 */
textarea {
    border: 2px solid rgb(170, 170, 170);
    /* 角丸ボーダー */
    border-radius: 13px;
    -webkit-border-radius : 13px;
    -moz-border-radius: 13px;
	box-sizing: border-box;

    padding: 3px 10px 3px 10px;
    height: 5em;

    font-size: 1em;
}
input[type="radio"] {
    position: relative;
    -webkit-appearance: button;
    appearance: button;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    content: "";
    background-color: #FFFFFF;
    border: 1px solid #999999;
    -webkit-border-radius: 24px;
    border-radius: 24px;
    -webkit-box-shadow: inset 4px 4px 10px rgba(0,0,0,0.2);
    box-shadow: inset 4px 4px 10px rgba(0,0,0,0.2);
    vertical-align: middle;
    cursor: pointer;
}

input[type="radio"]:checked:after {
    display: block;
    position: absolute;
    top: 4px;
    left: 4px;
    content: "";
    width: 14px;
    height: 14px;
    background: rgb(67, 138, 186);
    -webkit-border-radius: 14px;
    border-radius: 14px;
}
/*▲Add▲［パ］Ver.1.0.01 Date.2017.07.14 /スマホ対応/ ▲End▲*/

/* 履修登録内容確認画面の授業一覧の項目用 */
div.panel {
    border: 2px solid rgb(211, 211, 211);
    
    /* 背景グラデーション */
    background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: -webkit-gradient(linear, center top, center bottom, from(#fefefe), to(#f2f2f2));
    background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: linear-gradient(top, #fefefe, #f2f2f2);

    padding: 3px 3px 3px 3px;
    color: black;
}
/* 履修登録内容確認画面の授業一覧の項目用（先頭のデータ） */
div.panel.top {
    border-bottom-width: 1px;
    
    /* 角丸ボーダー */
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    -webkit-border-top-left-radius: 0.5em;
    -webkit-border-top-right-radius: 0.5em;
    -moz-border-radius-topleft: 0.5em;
    -moz-border-radius-topright: 0.5em;
}
/* 履修登録内容確認画面の授業一覧の項目用（中間のデータ） */
div.panel.center {
    border-width: 1px 2px 1px 2px;
} 
/* 履修登録内容確認画面の授業一覧の項目用（末尾のデータ） */
div.panel.bottom {
    margin-bottom:15px;

    border-top-width: 1px;
    
    /* 角丸ボーダー */
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
    -webkit-border-bottom-left-radius: 0.5em;
    -webkit-border-bottom-right-radius: 0.5em;
    -moz-border-radius-bottomleft: 0.5em;
    -moz-border-radius-bottomright: 0.5em;
}

/* 履修登録授業検索画面の他学科／他学年チェックボックス用 */
table.subject_table {
    margin: 0;
    width: 100%;
    line-height: 15px;
    -webkit-text-size-adjust: 100%;

    /*font-size: 0.6em;*/
}
/* 履修登録授業検索画面の他学科／他学年チェックボックス用 */
td.left {
    text-align: left;
}
/* 履修登録授業検索画面の他学科／他学年チェックボックス用 */
td.center {
    padding: 0;
    width: 40px;
    text-align: center;
}
/* 履修確認削除画面のチェックボックス用 */
table.subject_table_smallfont {
    margin: 0;
    width: 100%;
    line-height: 24px;
    -webkit-text-size-adjust: 100%;

    font-size: 0.95em;
}

/* ログイン画面の入力エラー表示用 */
div.error {
    /*line-height: 50%;*/
    line-height: 20px;
    padding-bottom:5px;
}
/* ログイン画面の入力エラー表示用 */
div.error span {
    color: red;

    /*font-size: 0.5em;*/
    font-size: 0.7em;
}
/* ログイン画面の入力エラー表示用 */
div.error #valiSum {
    text-align: left;
    color: red;
    line-height: 25px;
    padding:5px 0 10px 0;
    /*font-size: 0.5em;*/
    /*font-weight: bold;*/
    font-size: 0.7em;
    
}

/* 履修登録関連画面のエラー表示用 */
div.error2 {
    line-height: 20px;    
    text-align: left;			/*Add［パ］Ver.1.0.01 Date.2017.07.14 /スマホ対応/ */
	padding: 10px 10px 5px 10px;	/*Add［パ］Ver.1.0.01 Date.2017.10.03 /スマホ対応/ */
}
/* 履修登録関連画面のエラー表示用 */
div.error2 span {
    color: red;
    
    font-size: 0.7em;
}
/* 履修登録関連画面のエラー表示用 */
div.error3 {
    line-height: 20px;
    padding-left:10px;
    word-break:break-all;
}
/* 履修登録関連画面のエラー表示用 */
div.error3 span {
    color: red;
    
    font-size: 0.7em;

}

/* お知らせ表示用 */
div.message {
    line-height: 80%;
}
/* お知らせ表示用 */
div.message span {
    font-size: 0.8em;
}

/* タイトル行用 */
div.title {
    padding-top: 5px;
    line-height: 80%;
}
/* タイトル行用 */
div.title span {
    font-size: 0.8em;
    font-weight:bold;
}

/* メニューグループのタイトル用 */
div.subtitle {
    margin: 0;

    border-color: rgb(69, 111, 154);
    border-width: 1px;
    border-style: solid none solid none;
    
    /* 背景グラデーション */
    background-image: -moz-linear-gradient(top, #6da9d3, #4a7caf);
    background-image: -webkit-gradient(linear, center top, center bottom, from(#6da9d3), to(#4a7caf));
    background-image: -webkit-linear-gradient(top, #6da9d3, #4a7caf);
    background-image: linear-gradient(top, #6da9d3, #4a7caf);

    padding: 5px 0px 5px 20px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    height: 100%;
    text-align: left;
    line-height: 100%;
    vertical-align: middle;
    color: white;

    font-size: 0.8em;
    font-weight: bold;
}

/* メニュー項目用 */
div.menu {
    margin: 0;

    border-color: rgb(204, 204, 204);
    border-width: 1px;
    border-style: none none solid none;
    
    /* 背景グラデーション */
    background-image: -moz-linear-gradient(top, #ffffff, #f1f1f1);
    background-image: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#f1f1f1));
    background-image: -webkit-linear-gradient(top, #ffffff, #f1f1f1);
    background-image: linear-gradient(top, #ffffff, #f1f1f1);

    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    height: 100%;
    text-align: left;
    vertical-align: middle;
    line-height: 100%;
    color: black;
}
/* メニュー項目用 */
div.menu.bottom {
    border-color: rgb(204, 204, 204);
    border-width: 1px;
    border-style: solid none solid none;
}
/* メニューボタン用 */
div.menu button {
    margin: 0;
    border-style: none;
    background-color: transparent;
    padding: 5px 30px 5px 20px;
    width: 100%;
    height: 100%;
    text-align: left;
    vertical-align: middle;
    font-size: 0.8em;
    font-weight: bold;
}
/* メニューボタンにアイコンを配置するためのラベル用 */
div.menu label {
	position: relative;
}
/* ラベルの背景（アイコン） */
div.menu label:after {
	display: block;
	position: absolute;
	top: 0;
	right: 15px;

	margin-top: 4px;
	background: url(../images/arrow_right.png) 0 0 no-repeat;
	background-size: 22px;
	width: 22px;
	height: 22px;
	content: " ";
	pointer-events: none;
}

.default-top-spacer {
    margin-top:10px;
}

.default-right-spacer {
    margin-right:10px;
    word-break:break-all;
}

.default-top-closer {
    margin-top:-15px;
}

.default-bottom-closer {
    margin-bottom:-15px;
}
.default-top-text {
    margin-top:5px;
    line-height:25px;
    -webkit-text-size-adjust: 100%;
}


.default-left-closer {
    /*margin-left:-50%;*/
    margin-left:10%;
}

.default-left-closer2 {
    margin-left: 5%;
}
.default-left-text {
    /*margin-left:5%;*/
    padding:0 5% 10px 10%;
    line-height:25px;
    -webkit-text-size-adjust: 100%;
}

.text-bold {
    font-weight:bold;
}

.hr-small-top-margin {
    margin-top:-10px;
}

/* ハイパーリンク用 */
div.pc_site_link {
    line-height: 20px;

    font-size: 0.5em;
}

/* エラー画面用 */
div.error_page {
    padding: 20px;
    text-align: left;
    color: red;

    /* 2016/03/01 UPDATE 他の画面に表示しているエラーメッセージの文字大きさと行間隔に合わせる ------- START */
    line-height: 20px;
    font-size: 0.7em;
    word-break: break-all;
    /* 2016/03/01 UPDATE 他の画面に表示しているエラーメッセージの文字大きさと行間隔に合わせる ------- END */
}

/*▼Add▼［パ］Ver.1.0.01 Date.2017.07.14 /スマホ対応/ ▼Start▼*/
/* IME-Mode winIE限定 */
.ime_active {ime-mode: active;}
.ime_disabled {ime-mode: disabled;}

/* 数値 */
.num {
	text-align: right;
}
/* アプリケーションエラー */
div.app_error {
    padding: 20px;
    text-align: left;

    line-height: 20px;
    font-size: 0.7em;
    word-break: break-all;
}
/* クリア */
div.clear {
	clear: both;
}
/* 表示件数 */
div.list_count {
	font-size: 0.8em;
	text-align: right;
}
/* リストヘッダ部 */
div.list_header {
}
/* リスト詳細部 */
div.list_detail {
	font-size: 0.8em;
	line-height: 1.2;
}
/* 日付 */
div.list_date {
	font-size: 0.8em;
	font-weight: bold;
	float: left;
}
/* アイコン */
div.list_icon {
	text-align: center;
	vertical-align: middle;
	margin: 0px 2px;
	width: 24px;
	height: 16px;
	float: left;
}
/* 学校学部区分 */
.list_gkbn {
	font-size: 0.85em;
	width: 4.5em;
	float: left;
	margin-left: 1em;
}
/* 日付 */
div.list_datefromto {
	font-size: 0.85em;
	font-weight: bold;
	float: left;
}
/* 区分 */
.list_kbn {
	width: 4.5em;
	font-size: 0.85em;
	float: left;
}
/* 時限 */
.list_jigen {
	margin-left: 5px;
	font-size: 0.85em;
	float: left;
}


/* Newアイコン */
img.new {
}
/* 未読アイコン */
img.midoku {
}
/* 添付ファイルアイコン */
img.file {
}
/* レベルアイコン */
img.level {
}
/* お知らせタイトル */
.osirase_title {
}

/* ボタンエリア */
div.button_area {
}
/* ボタン1/2 */
div.button_2_1 {
	float: left;
	text-align: left;
	width: 50%;
}
div.button_2_2 {
	float: right;
	text-align: right;
	width: 50%;
}
/* 未読にするボタン */
div.button_midoku {
	float: right;
}
/* お知らせ詳細 */
div.osirasedetail_item1 {
	line-height: 1.2;
	margin-bottom: 5px;
}
div.osirasedetail_item2 {
	line-height: 1.2;
	margin-bottom: 10px;
	font-size: 0.7em;
}
div.osirasedetail_item3 {
	line-height: 1.2;
}
div.osirasedetail_item4 {
	line-height: 1.2;
	font-size: 0.8em;
}
div.osirasedetail_item5 {
	line-height: 1.2;
	font-size: 0.7em;
}
/* 休補講情報 */
div.kyuhokou_item1 {
	line-height: 1.2;
	font-size: 0.7em;
	margin-top: 5px;
}
div.kyuhokou_item2 {
	line-height: 1.2;
	font-size: 0.7em;
	margin-top: 5px;
}
div.kyuhokou_item3 {
	line-height: 1.2;
	font-size: 0.7em;
	margin-top: 5px;
}
div.kyuhokou_item4 {
	line-height: 1.2;
	font-size: 0.7em;
	margin-top: 5px;
}
div.kyuhokou_item5 {
	line-height: 1.2;
	font-size: 0.7em;
	margin-top: 5px;
}
div.kyuhokou_item6 {
	line-height: 1.2;
	font-size: 0.7em;
	margin-top: 5px;
}
.font_small {
	font-size: 0.8em;
}
div.kyuhokou_val {
	float: left;
	margin-left: 1em;
}
/* アンケート */
div.question_item1 {
	line-height: 45px;
	font-size: 0.8em;
}
div.question_item2 {
	line-height: 1.2;
	font-size: 0.8em;
}

div.question_j_item1 {
	line-height: 45px;
	font-size: 0.8em;
}
div.question_j_item2 {
	line-height: 1.2;
	font-size: 0.8em;
}
div.question_j_item3 {
	line-height: 1.2;
	font-size: 0.8em;
}
div.question_j_item4 {
	line-height: 1.2;
	font-size: 0.8em;
}
div.question_j_item5 {
	line-height: 1.2;
	font-size: 0.8em;
}
.question_j_item31{
	float: left;
}
.question_j_item32{
	margin-left: 1em;
	float: left;
}
.question_j_item33{
	margin-left: 1em;
	float: left;
}
.qa_title_box {
	background-color: #D9ECFF;
	line-height: 1.2em;
	padding: 2px;
	margin-top: 10px;
	margin-bottom: 5px;
}
div.qa_name{
	line-height: 1.2em;
	margin-bottom: 10px;
}
div.qa_name_complete {
	font-size: 24px;
	line-height: 25px;
	font-weight: bold;
}
div.question {
	font-size: 0.8em;
	margin-bottom: 10px;
}
div.question div.panel {
	margin-bottom: 10px;
	line-height: 1.2em;
}
div.question .text {
    width: 100%;
}

div.qa_header {
	line-height: 1.2em;
	font-size: 0.7em;
	font-weight: bold;
}
div.qa_footer {
	line-height: 1.2em;
	font-size: 0.7em;
	font-weight: bold;
}
div.complete_msg {
	font-size: 0.8em;
	font-weight:bold;
	color: #4169e1;
	line-height: 45px;
	text-align: center;
}
span.qa_error
{
    /*line-height: 25px;*/
    color: Red;
	font-size: 0.8em;
    margin-left: 10px;
}
/* 連絡先一覧 */
div.renrakusaki_item1 {
	line-height: 1.2em;
	font-size: 0.7em;
	margin-bottom: 10px;
}
div.renrakusaki_item2 {
	line-height: 1.2em;
	font-size: 0.8em;
	margin-bottom: 10px;
}
div.renrakusaki_item3 {
	line-height: 1.2em;
	font-size: 0.7em;
}
/*▲Add▲［パ］Ver.1.0.01 Date.2017.07.14 /スマホ対応/ ▲End▲*/

/* ▼Add▼［パ］Ver.1.0.01 Date.2017.07.18 /スマホ開発/▼Start▼ */
/* ------------------ ログイン画面デザイン ------------------ */
div.emergency_contact_title {
  font-size: 0.8em;
}
div.emergency_contact_frame {
  margin: 10px 0px 20px 0px;
}
div.emergency_contact_detail {
  font-size: 0.8em;
  line-height: 120%;
}
/* ------------------ 時間割関連のデザイン ------------------ */
/* 時間割の対象授業なし */
div.jikanwari_nojugyou {
	margin: 0px 0px 15px 0px;
	text-align:left;
	padding-left:10%;
	font-size:0.8em;
}
/* 出席登録の文字真ん中揃え用 */
div.center {
	text-align: center;
}
/* 出席登録パスワード入力エラー用 */
div.attendance_registration_error {
    line-height: 20px;
    text-align: left;
    margin: 0px 0px 10px 0px;
}
div.attendance_registration_error span {
  color: red;
  font-size:0.7em;
  padding-left: 20px;
}
/* 件数無しメッセージ用 */
div.no_lottery_result {
  color: red;
  font-size:0.7em;
}
/* ▼Add▼［パ］Ver.1.0.01 Date.2017.10.06 /授業タイトル名デザインを追加/▼Start▼ */
/* 授業名のタイトル用デザイン */
div.attendance_registration_jugyoutitle {
  padding-top: 10px;
  font-weight: bold;
  font-size: 24px;
  line-height: 25px;
}
/* ▲Add▲［パ］Ver.1.0.01 Date.2017.10.06 /授業タイトル名デザインを追加/▲End▲   */


#divRptJugyou div:last-child {
    margin-bottom:15px;
    border-top-width: 1px;

    /* 角丸ボーダー */
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
    -webkit-border-bottom-left-radius: 0.5em;
    -webkit-border-bottom-right-radius: 0.5em;
    -moz-border-radius-bottomleft: 0.5em;
    -moz-border-radius-bottomright: 0.5em;
}

#divRptJugyou #pnlBase div:first-child {
    border-bottom-width: 1px;
    
    /* 角丸ボーダー */
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    -webkit-border-top-left-radius: 0.5em;
    -webkit-border-top-right-radius: 0.5em;
    -moz-border-radius-topleft: 0.5em;
    -moz-border-radius-topright: 0.5em;
}

/* ------------------ 抽選結果確認関連のデザイン ------------------ */
/* 抽選授業表示全体のデザイン用 */
div.cyusenlist {
  padding: 10px 0px 10px 10px;
  font-size: 0.8em;
  line-height: 1.2;
}
/* 当選用デザイン */
div.cyusenlist_tousen {
  color: red;
}
/* 落選用デザイン */
div.cyusenlist_rakusen {
  /*color: lightgrey;*/  /* ▼Upd▼［パ］Ver.1.0.01 Date.2017.10.06 /落選用デザイン変更/ */
  color: #aab6d0;      /* ▲Upd▲［パ］Ver.1.0.01 Date.2017.10.06 /落選用デザイン変更/ */
}
/* 未抽選用デザイン */
div.cyusenlist_micyusen {
  color: black;
}
/* 抽選授業の明細２カラム用デザイン */
div.cyusenlist_detail_two_column {
  float: left;
  width: 50%;
}
/* ▲Add▲［パ］Ver.1.0.01 Date.2017.07.18 /スマホ開発/▲End▲   */

/* ▼Add▼［パ］Ver.1.0.01 Date.2017.10.06 /抽選授業の明細の下の線の非表示デザインを追加/▼Start▼ */
/* 抽選授業の明細の下の線の非表示デザイン */
#divCyusenAllList hr:last-child {
  display: none;
}
/* ▲Add▲［パ］Ver.1.0.01 Date.2017.10.06 /抽選授業の明細の下の線の非表示デザインを追加/▲End▲   */
