@charset "utf-8";
/*======================================
解答速報共通
========================================*/
:root{
  --nikken-red: #db2b32;
  --nikken-red_dark: #c40008;
  --bg-color-red: #d0d8d7;
  --btn-color: #2293b9;
  --bg-color: #004d70;
  --bg-color-light: #e1e7ee;
  --bg-color-light2: #f0f2f5;
  --bg-color-light3: #f0f2f5ba;
  --bg-color-dark: #3e4e65;
  --bg-color-dark2: #273949;
  --nikken-red_thin: #209792;
  --line-dark: #737373;
  --line-dark2: #666;
  --line-light: #d6d6d6;
  --line-light2: #ebebeb;
  --font-dark: #575f64;
  --point-color: #f9ffc6;
  --accent-color: #eaff4d;
  --accent-color2: #f9fed2;
}
/*---------------------------------------------
リセット
---------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, a,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section, summary,
time, mark, audio, video{
	font-size: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	box-sizing: border-box;
}

body{
	line-height: 1;
	width: 100%;
	overflow-wrap: break-word;/*URL等の長英文の折り返し*/
	word-wrap: break-word;/*URL等の長英文の折り返し*/
	/*font-family: -apple-system, BlinkMacSystemFont, "Meiryo UI", "メイリオ", Meiryo, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", HiraKakuProN-W3, sans-serif;*/
	/*font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;*/
	color: #333;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a:hover{
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6, th{
	font-weight: normal;
}

audio, canvas, progress, video{
	display: inline-block;
}

ul, ol{
	list-style: none;
}

img{
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: middle;
 image-rendering: -webkit-optimize-contrast;/*縮小時の画像ボケ軽減*/
}

table{
	border-collapse:collapse;
	border-spacing:0;
}

input, textarea, select, button{
	font: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

input, select{
	vertical-align: middle;
}

button{
	cursor: pointer;
	font: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

sub, sup{
	font-size: 65%;
}
sub{
	vertical-align: bottom;
}
sup{
	vertical-align: top;
}

*,
::before,
::after{
  box-sizing: content-box;
}

/*****
cmn.css調整
*****/
ul, li, ol{
	font-size: 1em;
}

/*---------------------------------------------
共通
---------------------------------------------*/
#kaisoku1q{}
#kaisoku2q{}

.font_size_l{
	font-size: 1.25em;
}
.font_size_s{
	font-size: 0.85em;
}

.font_red{
	color: #db2929;
}
.font_blue{
	color: #4b7cb2;
}
.font_white *,
.font_white{
	color: #fff;
}
.font_black{
	color: #000;
}

.bg_red{
	background-color: #db2929;
}
.bg_blue{
	background-color: #4b7cb2;
}
.bg_green{
	background-color: #62ae34;
}

.text_center{
	text-align: center;
}
.text_right{
	text-align: right;
}
.text_left{
	text-align: left;
}

.mgn_t05{
	margin-top: 0.5em;
}
.mgn_t1{
	margin-top: 1em;
}
.mgn_t2{
	margin-top: 2em;
}
.mgn_t3{
	margin-top: 3em;
}
.mgn_b05{
	margin-bottom: 0.5em;
}
.mgn_b1{
	margin-bottom: 1em;
}
.mgn_b2{
	margin-bottom: 2em;
}
.mgn_b3{
	margin-bottom: 3em;
}
.mgn_l1{
	margin-left: 1em;
}
.mgn_l2{
	margin-left: 2em;
}
.mgn_r1{
	margin-right: 1em;
}
.mgn_r2{
	margin-right: 2em;
}

.flex{
	display: flex;
}
.flex_between{
	display: flex;
	justify-content: space-between;
}
.flex_center{
	display: flex;
	justify-content: center;
}
.flex_around{
	display: flex;
	justify-content: space-around;
}

.items_start{
	align-items: flex-start;
}
.items_end{
	align-items: flex-end;
}
.items_center{
	align-items: center;
}

.shrink0{
	flex-shrink: 0;
}
.grow1{
	flex-grow: 1;
}


.li_indent05 li,
.note_indent05{
	text-indent: -0.5em;
	padding-left: 0.5em;
}
.li_indent1 li,
.note_indent1{
	text-indent: -1em;
	padding-left: 1em;
}
.li_indent1_5 li,
.note_indent1_5{
	text-indent: -1.5em;
	padding-left: 1.5em;
}
.li_indent2 li,
.note_indent2{
	text-indent: -2em;
	padding-left: 2em;
}

.under_line{
	text-decoration: underline;
}
.line_through{
	text-decoration: line-through;
}

.p_line p{
	margin-bottom: 0.75em;
}
.p_line p:last-of-type{
	margin-bottom: 0;
}

.border_box{
	margin: 1em auto;
	padding: 1em;
	border: solid 1px #858585;
}

a.link_arrow{}
a.link_arrow::before{
	content: '▼';
	display: inline-block;
	font-size: 0.75em;
	line-height: 1;
	color: #858585;;
	margin-right: 0.5em;
	padding: 0.25em;
	border: solid 1px #858585;
	border-radius: 50%;
	transform: rotateZ(-90deg);
  width: auto;
  height: auto;
}
a.link_anchor{}
a.link_anchor::before{
	content: '▼';
	display: inline-block;
	font-size: 0.75em;
	line-height: 1;
	color: #858585;;
	margin-right: 0.5em;
	padding: 0.25em;
	border: solid 1px #858585;
	border-radius: 50%;
}

/***リンクボタン***/
.btn_normal{
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	width: 100%;
	max-width: 640px;
	margin: 1em auto;
	border-radius: 0.25em;
	position: relative;
	z-index: 1;
	box-shadow: 0 0 2px 0 rgba(0,0,0,0.3);
	text-shadow: 0 0 2px rgba(0,0,0,0.5);
}
.btn_normal::before{
	content: '';
	display: block;
	width: 0%;
	height: 100%;
	border-radius: 0.25em;
	background-color: rgba(0,0,0,0.25);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0;
	transition: width 0.5s, opacity 0.5s;
}
.btn_normal:hover::before{
	width: 100%;
	opacity: 1;
}
.btn_normal a{
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 0.5em 2.5em 0.5em 1em;
	border: solid 2px #fff;
	border-radius: 0.25em;
	background-image: url("/nikken/guidance/img/icon_arrow.png");
	background-repeat: no-repeat;
	background-size: 1em auto;
	background-position: right 1em center;
}
.btn_close{
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	width: 100%;
	max-width: 420px;
	margin: 1em auto;
	padding: 0.5em;
	border-radius: 0.25em;
	background-color: #ccc;
	box-shadow: 0 0 2px 0 rgba(0,0,0,0.3);
}

.btn_no_link{
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	width: 100%;
	max-width: 620px;
	margin: 1em auto;
	padding: 0.5em;
	border-radius: 0.5em;
	background-color: #aaa;
}

.btn_download{
	text-align: center;
	margin: 1em auto;
}
.btn_download a{
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
	text-decoration: none;
	color: #000;
	padding: 1em 1em 1em 2em;
	border: solid 2px #858585;
	border-radius: 0.5em;
	background-color: #fbed21;
	position: relative;
	transition: transform 0.5s,background-color 0.5s;
}
.btn_download a::before{
	content: '▼';
	display: block;
	text-align: center;
	width: 1em;
	height: 1em;
	border: solid 2px transparent;
	position: absolute;
	top: 50%;
	left: 0.5em;
	transform: translateY(-1em);
	transform-origin: center center;
}
.btn_download a::after{
	content: '';
	display: block;
	width: 1em;
	height: 0.35em;
	position: absolute;
	top: 50%;
	left: 0.5em;
	border: solid 2px #453f39;
	border-top: none;
}
.btn_download a:hover{
	background-color: #fff781;
	transform: translateY(0.5em);
}

.btn_bn_area{
	margin: 1em auto;
}
.btn_bn_area .btn_banner{
	text-align: center;
}
.btn_bn_area .btn_banner a{
	display: inline-block;
	text-decoration: none;
}
.btn_bn_area .btn_banner a::after{
	content: '詳細はコチラ';
 display: block;
 text-align: right;
 color: #fff;
 padding: 0.25em 2em 0.25em 0.5em;
 background-color: #faa906;
 background-image: url("/nikken/guidance/img/icon_arrow.png");
 background-repeat: no-repeat;
 background-position: right 0.5em center;
 background-size: auto 1em;
}

/***ページ内アンカーリンクナビ***/
.contetns_nav{
	width: 94%;
	max-width: 970px;
	margin: 0 auto 2em auto;
}
.contetns_nav .anchor_nav{
	text-align: center;
}
.contetns_nav .anchor_nav li{}
.contetns_nav .anchor_nav li a{
	display: block;
	color: #333;
	padding: 0.5em 1em 0.5em 2em;
	text-decoration: none;
	border: solid 1px #ddd;
	border-radius: 1em;
	background-color: #fff;
	position: relative;
}
.contetns_nav .anchor_nav li a::before{
	content: '▼';
	display: block;
	color: #db2929;
	position: absolute;
	top: 50%;
	left: 0.5em;
	transform: translateY(-50%);
}
.contetns_nav .anchor_nav li a:hover{
	color: #db2929;
}


.wrap{
	width: 100%;
	/*overflow: hidden;*/
}

/*---------------------------------------------
ヘッダー
---------------------------------------------*/
#header_area{
	border-bottom: solid 1px #ccc;
}
#kaisoku_header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 94%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0.5em 0;
}
#kaisoku_header .page_ttl{
	font-weight: bold;
}
#kaisoku_header .nikken_logo{}
#kaisoku_header .header_link{
	font-size: 1.6rem;
}
#kaisoku_header .header_link li{
	margin-top: 0.5em;
}
#kaisoku_header .header_link li:first-of-type{
	margin-top: 0;
}
#kaisoku_header .header_link li a{
	display: block;
	color: #000;
	text-align: center;
	text-decoration: none;
	padding: 0.5em;
	background-color: #fbed21;
	border-radius: 0.5em;
	box-shadow: 0 2px 0 0 #e69118;
}
#kaisoku_header .header_link li a:hover{
	transform: translateY(2px);
	box-shadow: 0 0 0 0 #e69118;
}


/*---------------------------------------------
ページナビ
---------------------------------------------*/
#page_nav{
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	width: 100%;
	background-image: linear-gradient(to bottom, #fff 0%,#ebeff0 100%);
	box-shadow: 0 2px 2px 2px rgba(0,0,0,0.2);
}
#menu_list{
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
#menu_list li{
	border-right: solid 1px #ccc;
}
#menu_list li:last-of-type{
	border-right: none;
}
#menu_list li a{
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #555;
	height: 100%;
	padding: 1em;
	transition: background 0.5s,color 0.5s;
}
#menu_list li a:hover{
	color: #fff;
	background-color: #db2929;
}

/*****
固定用のCSS
*****/
.fixed_nav{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}
/*****
end 固定用のCSS
*****/

/*****
アンカーリンク カレントのCSS
*****/
#menu_list li.on_anchor a{
	color: #fff;
	background-color: #db2929;
	cursor: default;
	position: relative;
}
#menu_list li.on_anchor a::after{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.75em 0.75em 0 0.75em;
	border-color: #db2929 transparent transparent transparent;
	position: absolute;
	top: 100%;
	left: 20%;
}
/*****
end アンカーリンク カレントのCSS
*****/

/*---------------------------------------------
コンテンツベース
---------------------------------------------*/
.section_wrap{
	font-size: 1.6rem;
	width: 100%;
	padding: 4em 0;
}
.bg_type01{
	background-image: repeating-linear-gradient(45deg,transparent 0,transparent 20px,rgba(255,220,145,0.5) 20px,rgba(255,220,145,0.5) 21px),repeating-linear-gradient(90deg,transparent 0,transparent 20px,rgba(255,220,145,0.5) 20px,rgba(255,220,145,0.5) 21px);
	background-size: auto,auto;
	background-color: #fffbd2;
}
.normal_section{
	line-height: 1.6;
	width: 94%;
	max-width: 970px;
	margin: 0 auto;
}
/* 230110 追記 */
.normal_section h5{
  line-height: 1.6;
}
.ttl_type01{
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 30px;
	padding: 0.75em 1em;
	border-style: solid;
	border-top-width: 4px;
	border-bottom-width: 2px;
	background-color: #fff;
	position: relative;
}
#kaisoku1q .ttl_type01{
	color: #db2929;
	border-color: #db2929 transparent #db2929 transparent;
}
#kaisoku2q .ttl_type01{
	color: #4b7cb2;
	border-color: #4b7cb2 transparent #4b7cb2 transparent;
}
.ttl_type01::before,
.ttl_type01::after{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
}
.ttl_type01::before{
	border-width: 28px 22px 0 22px;
}
#kaisoku1q .ttl_type01::before{
	border-color: #db2929 transparent transparent transparent;
}
#kaisoku2q .ttl_type01::before{
	border-color: #4b7cb2 transparent transparent transparent;
}
.ttl_type01::after{
	border-width: 25px 19px 0 19px;
	border-color: #fff transparent transparent transparent;
}

.ttl_type02{
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 1em;
	padding: 0.25em 1em 0.25em 1.5em;
	border-bottom: solid 1px #ccc;
	background-image: linear-gradient(to bottom, #fff 0%,#ebeff0 100%);
	position: relative;
}
.ttl_type02::before{
	content: '';
	display: block;
	width: 0.26em;
	height: 80%;
	border-radius: 0.13em;
	background-image: linear-gradient(to top, #f0baba 0%,#db2929 100%);
	position: absolute;
	top: 50%;
	left: 0.5em;
	transform: translateY(-50%);
}

.ttl_icon{
	padding-right: 6em;
	position: relative;
}
.ttl_icon .icon_free{
	line-height: 1;
	color: #fff;
	padding: 1em;
	border-radius: 50%;
	background-color: #db2929;
	box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.25);
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%) rotateZ(10deg);
}

.icon_present{
	display: inline-block;
	width: 1.5em;
	margin-right: 0.5em;
	transform: translateY(-5%);
}

.ttl_type03{
	font-size: clamp(1.6rem,2.26vw,2.2rem);
	font-weight: bold;
	margin: 1em 0;
	padding: 0.25em 0.5em;
	border-bottom: solid 1px #575f64;
}


/*****
解答速報LIVE
*****/
#kaisoku_live{
	background-image: repeating-linear-gradient(0deg,transparent 0,transparent 20px,rgba(255,255,255,0.35) 20px,rgba(255,255,255,0.35) 22px);
}
#kaisoku1q #kaisoku_live{
	background-color: #900e0e;
}
#kaisoku2q #kaisoku_live{
	background-color: #355980;
}
#kaisoku_live.section_wrap{
	padding: 1em 0;
}
.live_section{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.btn_live{
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	width: 100%;
	max-width: 620px;
	margin: 4px auto 0 auto;
}
.btn_live a{
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 1em;
	border: solid 2px #fff;
	border-radius: 0.5em;
	background-color: #e61f19;
	box-shadow: 0 0 2px 2px rgba(0,0,0,0.25);
	transition: background-color 0.5s;
}
.btn_live a::before{
	content: '▼';
	display: inline-block;
	font-size: 0.8em;
	color: #e61f19;
	margin-right: 1em;
	padding: 0.5em;
	border-radius: 0.5em;
	background-color: #fff;
	transform: rotateZ(-90deg);
}
.btn_live a:hover{
	background-color: #961410;
}

/***LIVE配信が無い場合***/
.no_live_section{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.no_live_section .no_live_ttl{
	font-size: 3.6rem;
	font-weight: bold;
	color: #fff;
	padding: 0.5em 1em;
	text-shadow: 0 0 4px #000;
	transform: skewX(-10deg);
	position: absolute;
	bottom: 0;
	right: 1em;
}

/*****
WEB採点サービス
*****/
#gradingservice{}

/***タイトル***/
.ttl_gradingservice{
	text-align: center;
	margin-bottom: 2em;
	padding: 3.5em 1em 1em 1em;
	background-image: url("/nikken/guidance/img/kaisoku_webttl_bg01.png"),url("/nikken/guidance/img/kaisoku_webttl_bg02.png");
	background-repeat: no-repeat;
	background-position: left top,right top;
	background-size: contain;
	position: relative;
}

.ttl_graser{}

.icon_kentei{
	display: inline-block;
	font-size: 1.5em;
	font-weight: bold;
	color: #fff;
	padding: 0 0.5em;
	border-radius: 0 0 0.5em 0.5em;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

/***テキスト***/
.graser_text{
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

/***期間***/
.period_area{
	display: flex;
	font-weight: bold;
	margin: 1em 0;
	border: solid 1px #000;
	background-color: rgba(255,255,255,0.8);
}
.ttl_period{
	flex-shrink: 0;
	display: flex;
	align-items: center;
	text-align: center;
	color: #fff;
	padding: 0.25em 1em;
	background-color: #000;
}
.period_day{
	flex-grow: 1;
	font-size: 2rem;
	padding: 0.5em 1em;
}

/***申し込みボタン***/
.apply_btn{
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
	max-width: 720px;
	margin: 1em auto;
}
.apply_btn a{
	display: block;
	color: #333;
	text-decoration: none;
	padding: 0.75em 3em 0.75em 1em;
	border-radius: 0.5em;
	background-color: #fbed21;
	background-image: url("/nikken/guidance/img/kaisoku_apply_arrow.png");
	background-repeat: no-repeat;
	background-position: right 1em center;
	box-shadow: 0 0 2px 2px rgba(0,0,0,0.25);
	transition: transform 0.5s;
}
.apply_btn a:hover{
	transform: scale(1.1);
	opacity: 1;
}
/*cmn.css 調整*/
.apply_btn a:after{
	display: none;
}

/***注意書き***/
.service_note{
	margin-top: 2em;
	padding: 1em;
	border-top: solid 2px #555;
	border-bottom: solid 2px #555;
}
.service_note h4{
	font-size: 1.15em;
	font-weight: bold;
	color: #db2929;
	margin-bottom: 0.5em;
	padding: 0 0 0 2.5em;
	background-image: url("/nikken/guidance/img/kaisoku_icon_attent.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: auto 100%;
}
.service_note ul{}
.service_note ul li{}

/***WEB採点サービス利用者へのプレゼント***/
.graser_present{
	position: relative;
}

.gs_pre_ttl{
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	padding: 0.5em 24% 0.5em 0.5em;
	background-color: #d1b258;
	text-shadow: 0 0 2px rgba(0,0,0,0.8);
}

.gs_pre_inner{
	text-align: center;
	padding: 4em 1em 1em 1em;
	border: solid 4px #d1b258;
	background-color: rgba(255,255,255,0.65);
}
.gs_pre_sub{
	width: 20%;
	position: absolute;
	top: 0;
	right: 2%;
}
.gs_pre_inner .gs_pre_headline{
	font-size: 3.2rem;
	font-weight: bold;
	margin-bottom: 0.5em;
	padding: 0.25em 1em;
	border-top: solid 2px #d1b258;
	border-bottom: solid 2px #d1b258;
	background-color: #fff;
}

.gs_pre_inner .gs_pre_apply{}

/***推奨点***/
.guess_area{}
.guess_area .guess_point,
.guess_area .guess_link,
.guess_area .guess_nolink{
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	margin: 2em auto 0.5em auto;
	border: solid 2px #db2929;
}
.guess_area .guess_point{
	color: #db2929;
	padding: 0.5em;
	background-color: #fff;
}
.guess_area .guess_link{}
.guess_area .guess_link a,
.guess_area .guess_nolink{
	display: block;
	color: #db2929;
	text-decoration: none;
	padding: 0.5em 0.5em 0.5em 2em;
	background-color: #fff;
	position: relative;
}
.guess_area .guess_link a::before,
.guess_area .guess_nolink::before{
	content: '▼';
	display: block;
	text-align: center;
	width: 1em;
	height: 1em;
	border: solid 2px transparent;
	position: absolute;
	top: 50%;
	left: 0.5em;
	transform: translateY(-1em);
	transform-origin: center center;
}
.guess_area .guess_link a::after,
.guess_area .guess_nolink::after{
	content: '';
	display: block;
	width: 1em;
	height: 0.35em;
	position: absolute;
	top: 50%;
	left: 0.5em;
	border: solid 2px #db2929;
	border-top: none;
}
.guess_area .guess_link a:hover{
	background-color: #fff781;
}
.guess_area .guess_nolink{
	background-color: #ccc;
}


/*****
ポイント講習会
*****/
#briefing_session{}

.present_2ji_bunseki{}

.tbl_pointcourse{
	border-top: solid 1px #ccc;
	border-left: solid 1px #ccc;
}
.tbl_pointcourse th,
.tbl_pointcourse td{
	padding: 0.5em;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
}
.tbl_pointcourse th{
	color: #fff;
	background-color: #5b5450;
	white-space: nowrap;
}
.tbl_pointcourse td{}

/*****
解答試案プレゼント
*****/
#shian_present{}

/*****
問題・解答参考例プレゼント
*****/
#sankou_present{}
.present_book{}

/*****
問題・解答解説集プレゼント
*****/
#kaisetsu_present{}

/*****
検定対策
*****/
#measures{}

.tbl_course_list{
	width: 100%;
	margin-bottom: 2em;
	border-top: solid 1px #ccc;
	border-left: solid 1px #ccc;
}
.tbl_course_list tr.tr_ttl{}
.tbl_course_list th,
.tbl_course_list td{
	padding: 0.5em;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
}
.tbl_course_list th{
	color: #fff;
	background-color: #5b5450;
}
.tbl_course_list td{}

.tbl_course_list td.table_name{
	width: 40%;
	background-color: #d9f0f4;
}

.table_name .list_target{
	font-weight: bold;
	color: #db2929;
}
.table_name h4{
	font-size: 1.25em;
	font-weight: bold;
}
.table_name h4 a{
	color: #333;
	text-decoration: none;
}
.table_name h4 a:hover{
	color: #db2929;
}

.tbl_course_list td.table_outline{}

.table_outline h5{
	font-size: 1.15em;
	font-weight: bold;
	color: #db2929;
}

/*---------------------------------------------
総評
---------------------------------------------*/
#general_comment{}

.review_notice{
	font-size: 1.1em;
	text-align: center;
}

.review_lv1{
	font-size: 1.1em;
	font-weight: bold;
	margin: 1.5em 0 0.5em 0;
	border-bottom: solid 1px #aaa;
}
.review_lv2{
	font-size: 1.1em;
	font-weight: bold;
	color: #555;
	margin: 1.5em 0 0.5em 0;
	border-bottom: dashed 1px #aaa;
}

.tbl_basic{
	width: 100%;
	margin: 0.5em 0;
	border-top: solid 1px #ccc;
	border-left: solid 1px #ccc;
}
.tbl_basic th,
.tbl_basic td{
	padding: 0.5em;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
}
.tbl_basic th{
	background-color: #d9f0f4;
}
.tbl_basic td{}

.tbl_basic ul,
.tbl_basic ol{
	margin-top: 0.5em;
}

table .cellColor2{
	background-color: #dde4e5;
}
table .cellColor3{
	background-color: #f8facf;
}
table .v_middle{
	vertical-align: middle;
}
table .td_nowrap{
	white-space: nowrap;
}

/*---------------------------------------------
フッター
---------------------------------------------*/
/* お問い合せ */
.footer ul, .footer li, .footer ol, .footer small{
  font-size: 1.4rem;
  line-height: 1.6;
}
.consultation *{
  line-height: 1.6;
}
.consultation{
  padding: 40px 0 0;
  border-top: 1px solid #ccc;
  text-align: center;
}
.consultation__ttllv1{
  color: var(--nikken-red);
  font-size: 2.0rem;
}
.consultation__ttllv1 span{
  padding: 0 15px 20px;
  display: inline-block;
  position: relative;
  border-bottom: 1px solid var(--nikken-red);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}
.consultation__ttllv1 span::after{
  content: ' ';
  margin: 0 auto;
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 0;
  border-right: solid 1px var(--nikken-red);
  border-bottom: solid 1px var(--nikken-red);
  background-color: #fff;
  transform: rotate(45deg);
}
.consultation__ttllv2{
  margin-top: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}
.callcenter-tel{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 3.0rem;
}
.callcenter-tel span{
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.callcenter-tel a{
  color: #333;
}
.callcenter-info{
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.3;
}
.callcenter_cont{
  margin: 0 0 30px;
}
.consultation-pickup{
  padding: 30px;
  background-color: var(--nikken-red);
}
.consultation-pickup__box{
  margin: 0 0 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}
.consultation-pickup__box a{
  padding: 15px;
  display: block;
  position: relative;
  height: 100%;
  background-color: #fff;
  color: #333;
  transition: all 0.1s ease;
}
.consultation-pickup__box a::before{
  content: ' ';
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 33px;
  height: 11px;
  background: url(../img/arrow-s.svg) no-repeat left top;
  background-size: 27px 11px;
  transition: all 0.1s ease;
}
.consultation-pickup__box a:hover{
  opacity: 0.9;
  text-decoration: none;
}
.consultation-pickup__box a:hover::before{
  background-position: 5px top;
}
.consultation-pickup__ttl{
  margin: 0 0 10px;
  color: var(--nikken-red);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
}
.consultation-pickup__ttl span{
  padding-bottom: 10px;
  display: block;
}
.page-top{
  display: none;
  position: fixed;
  z-index: 1000;
  right: 0;
  bottom: 0;
}
.page-top a{
  display: block;
  border: 10px solid #fff;
  background-color: #fff;
  text-decoration: none;
}
.page-top a img{
  width: 90px;
  height: auto;
  opacity: 0.7;
}
.page-top a:hover{
  opacity: 0.9;
}
.page-top a:hover img{
  opacity: 1.0;
}
.ksk-info{
  background: var(--bg-color-light);
  font-size: 1.5rem;
}
.ksk-info__box{
  padding: 50px 25px;
}
.ksk-logo{
  margin: 0 0 15px;
}
.ksk-logo a{
  transition: all 0.2s ease;
}
.ksk-logo a:hover{
  opacity: 0.8;
}
.ksk-logo img{
  max-width: 100%;
  height: auto;
}
.ksk-list{
  margin: 5px 0 0;
  display: flex;
}
.ksk-list li{
  margin: 0 20px 0 0;
}
.ksk-list li a{
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(#9c9c9c 0 0) 0 100% / var(--d, 0) 1px no-repeat;
  color: #333;
  font-size: 1.4rem;
  transition: opacity 0.3s ease;
}
.ksk-list li a::before{
  content: ' ';
  margin: 0 5px 0 0;
  display: block;
  width: 4px;
  height: 4px;
  border-top: 1px solid #7a8696;
  border-left: 1px solid #7a8696;
  transform: rotate(135deg);
}
.ksk-list li a img{
  vertical-align: middle;
}
.ksk-list li a:hover{
  opacity: 0.7;
  --d: 100%;
}

.fotter-content-nav{
  padding: 50px;
  background-color: #fff;
}
.fotter-nav__wrap{
  padding: 25px 15px;
  background-color: #242b37;
  text-align: center;
}
.footer-nav__list{
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
}
.footer-nav__list a{
  padding: 5px 10px;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
}
.footer-nav__list a::before{
  content: ' ';
  margin: 0 5px 0 0;
  display: block;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(135deg);
}
.footer-nav__list a:hover{
  opacity: 0.7;
}
.footer-nav__list a img{
  vertical-align: middle;
}
.footer-small{
  margin: 0 -15px ;
  padding: 20px;
  display: block;
  border-top: 1px solid #5f646d;
  color: #fff;
}
@media screen and (min-width: 1024px){
 /* 問い合せ */
  .consultation{
    padding: 50px 0 0;
  }
  .consultation__ttllv1 span{
    padding: 0 100px 20px;
  }
  .callcenter_cont{
    margin: 0 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .consultation-pickup{
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .consultation-pickup__box{
    margin: 0 15px;
    width: 40%;
  }
  .consultation-pickup__box a{
    padding: 30px;
  }
  .consultation-pickup__ttl{
    font-size: 2.5rem;
  }
  .consultation-pickup__ttl span{
    padding-right: 5px;
    display: inline-block;
  }
  .callcenter-tel{
    font-size: 3.8rem;
  }
}

/*---------------------------------------------
	youtube枠
---------------------------------------------*/
/*** youtube枠 ***/
.movie_cont{
	max-width: 790px;
	margin: 40px auto;
	padding: 20px;
 overflow: hidden;
 border: 1px solid #ccc;
}
.movie_cont h3,
.movie_cont_ttl{
	margin-top: 0;
	padding: 0 0 5px 25px;
 margin-bottom: 5px;
 border-bottom: 1px solid #ddd;
 font-size: 1.4rem;
 position: relative;
}
.movie_cont h3::before,
.movie_cont_ttl::before{
	content: '';
 width: 18px;
 height: 17px;
 background: url(/nikken/guidance/img/guidance_arrow_ico.png) no-repeat left -26px;
 background-size: 150px 150px;
 position: absolute;
 top: 0;
 left: 0;
}
.movie_cont_ttl strong{
  color: #333;
}

.movie_time::before{
	content: '';
 margin: 0 3px 0 0;
 width: 11px;
 height: 11px;
 display: inline-block;
 background: url(/nikken/guidance/img/guidance_arrow_ico.png) no-repeat left -43px;
 background-size: 150px 150px;
}
.video_cont{
	position: relative;
 padding-bottom: 56.25%;
 height: 0;
 overflow: hidden;
 box-sizing: border-box;
}
.video_cont iframe,
.video_cont object,
.video_cont embed{
	position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
}

/***Coming Soon***/
.movie_coming{
	width: 100%;
	max-width: 640px;
	margin: 1em auto;
	padding: 2em;
	border: solid 1px #ccc;
	background-color: #fff;
}
.movie_coming .coming_area{
	font-size: 1.5em;
	text-align: center;
	padding: 2em;
	background-color: #ccc;
}
.movie_coming .coming_area .icon_play{
	display: inline-block;
	color: #fff;
	padding: 0.5em;
	border-radius: 0.5em;
	background-color: #e50012;
	transform: rotateZ(90deg);
}

/* ===========================================
	MediaQueries
=========================================== */
/* PC----------------------------- */
@media (min-width: 768px){
	/*---------------------------------------------
	リセット
	---------------------------------------------*/
	html{
		font-size: 62.5%;
	}
	
	.sp_only,
	.br_sp{
		display: none;
	}
	
	.flex_between_pc{
		display: flex;
		justify-content: space-between;
	}
	.flex_center_pc{
		display: flex;
		justify-content: center;
	}
	.flex_around_pc{
		display: flex;
		justify-content: space-around;
	}
	
	.items_start_pc{
		align-items: flex-start;
	}
	.items_end_pc{
		align-items: flex-end;
	}
	.items_center_pc{
		align-items: center;
	}
	
	.shrink0_pc{
		flex-shrink: 0;
	}
	.grow1_pc{
		flex-grow: 1;
	}
	
	/***ページ内アンカーリンクナビ***/
	.contetns_nav{}
	.contetns_nav .anchor_nav{}
	.contetns_nav .anchor_nav li{
		display: inline-block;
		margin: 0 0.5em;
	}
	.contetns_nav .anchor_nav li a{}
	.contetns_nav .anchor_nav li a::before{}
	
	/*****
	バナーエリア
	*****/
	.btn_bn_area .btn_banner{
		max-width: 714px;
		margin: 0 auto;
	}
	.btn_bn_area.flex_between_pc .btn_banner{
		width: 49.5%;
		max-width: 476px;
		margin: 0;
	}
	
	/*---------------------------------------------
	ヘッダー
	---------------------------------------------*/
	#kaisoku_header{
		min-width: 970px;
	}
	#kaisoku_header .page_ttl{
		order: 2;
		flex-grow: 1;
		font-size: 2.4rem;
		margin-left: 1em;
	}
	#kaisoku_header .nikken_logo{
		order: 1;
	}
	#kaisoku_header .header_link{
		order: 3;
	}
	
	/*---------------------------------------------
	ページナビ
	---------------------------------------------*/
	#menu_list{
		min-width: 970px;
	}
	
	/*---------------------------------------------
	コンテンツベース
	---------------------------------------------*/
	/*****
	解答速報LIVE
	*****/
	/*****
	WEB採点サービス
	*****/
	#gradingservice{
		background-image: repeating-linear-gradient(0deg,transparent 0,transparent 20px,rgba(255,255,255,0.35) 20px,rgba(255,255,255,0.35) 21px),repeating-linear-gradient(90deg,transparent 0,transparent 20px,rgba(255,255,255,0.35) 20px,rgba(255,255,255,0.35) 21px),url("/nikken/guidance/img/kaisoku_gradingservice_bg.jpg");
		background-size: auto,auto,cover;
		background-color: #eee;
		background-position: center center;
		background-attachment: scroll,scroll,fixed;
	}
	
	/*****
	ポイント講習会
	*****/
	.present_2ji_bunseki{
		flex-shrink: 0;
		margin-right: 2em;
	}
	
	/*****
	解答試案プレゼント
	*****/
	/*****
	問題・解答参考例プレゼント
	*****/
	.present_book{
		flex-shrink: 0;
		margin-left: 1em;
	}
	
	/*****
	検定対策
	*****/
	
	/*---------------------------------------------
	総評
	---------------------------------------------*/
}

/* スマホ----------------------------- */
@media screen and (max-width: 767px){
	/*---------------------------------------------
	リセット
	---------------------------------------------*/
	html{
		font-size: 62.5%;
	}
	
	.pc_only,
	.br_pc{
		display: none;
		/*display: inline-block;*/
	}
	
	.btn_normal,
	.btn_close,
	.btn_no_link,
	.btn_download a{
		font-size: 1.6rem;
	}
	
	/***ページ内アンカーリンクナビ***/
	.contetns_nav{}
	.contetns_nav .anchor_nav{}
	.contetns_nav .anchor_nav li{
		margin-bottom: 0.5em;
	}
	.contetns_nav .anchor_nav li a{}
	
	
	.inner_scroll{
		width: 100%;
		margin: 1em auto;
		padding: 2em 0.5em;
		border: solid 1px #aaa;
		overflow-x: scroll;
		background-image: url("/nikken/guidance/img/swipe.png"),url("/nikken/guidance/img/swipe.png");
		background-repeat: no-repeat;
		background-size: auto 1.5em;
		background-position: left 0.25em top 0.25em, right 0.25em bottom 0.25em;
	}
	.inner_scroll > table{
		max-width: 970px;
		min-width: 500px;
	}
	
	/*---------------------------------------------
	ヘッダー
	---------------------------------------------*/
	#kaisoku_header{
		justify-content: space-between;
	}
	#kaisoku_header .page_ttl{
		order: 3;
		font-size: 1.6rem;
		line-height: 1.2;
		text-align: center;
		width: 100%;
		margin-top: 0.5em;
		padding: 0.5em 0;
		border-top: solid 1px #ccc;
	}
	#kaisoku_header .nikken_logo{
		order: 1;
		width: 25%;
	}
	#kaisoku_header .header_link{
		font-size: 1.2rem;
		order: 2;
	}
	
	/*---------------------------------------------
	ページナビ
	---------------------------------------------*/
	#menu_list,
	#menu_list li{
		font-size: 1.2rem;
		line-height: 1.2;
	}
	#menu_list li a{
		padding: 0.5em 0.75em;
	}
	
	/*---------------------------------------------
	コンテンツベース
	---------------------------------------------*/
	.section_wrap{
		font-size: 1.4rem;
		padding: 2em 0;
	}
	.normal_section{}
	
	.ttl_type01{
		font-size: 1.8rem;
	}
	
	.ttl_type02{
		font-size: 1.6rem;
	}
	
	/*****
	解答速報LIVE
	*****/
	#kaisoku_live.section_wrap{
		padding: 0 0 4px 0;
	}
	
	.btn_live{
		font-size: 1.6rem;
		width: 94%;
	}
	.btn_live a{
		padding: 0.5em;
	}
	
	/***LIVE配信が無い場合***/
	.no_live_section .no_live_ttl{
		font-size: 1.6rem;
	}
	
	/*****
	WEB採点サービス
	*****/
	#gradingservice{
		background-image: repeating-linear-gradient(0deg,transparent 0,transparent 20px,rgba(255,255,255,0.35) 20px,rgba(255,255,255,0.35) 21px),repeating-linear-gradient(90deg,transparent 0,transparent 20px,rgba(255,255,255,0.35) 20px,rgba(255,255,255,0.35) 21px);
		background-size: auto,auto;
		background-color: #eee;
	}
	
	/***タイトル***/
	.ttl_gradingservice{
		padding: 3em 0 0.5em 0;
		border: solid 3px #62b700;
	}
	
	.ttl_graser{
		width: 88%;
		margin: 0 auto;
	}
	
	.icon_kentei{
		font-size: 1.2em;
	}
	
	/***テキスト***/
	.graser_text{
		font-size: 1.4rem;
		text-align: left;
	}
	
	/***期間***/
	.period_area{
		display: block;
	}
	.ttl_period{
		display: block;
	}
	.period_day{
		font-size: 1.6rem;
		padding: 0.5em;
	}
	/***申し込みボタン***/
	.apply_btn{
		font-size: 1.8rem;
	}
	
	/***注意書き***/
	
	/***WEB採点サービス利用者へのプレゼント***/
	.gs_pre_ttl{
		font-size: 1.6rem;
		text-align: left;
	}
	
	.gs_pre_inner{
		text-align: left;
		padding: 1em;
	}
	.gs_pre_inner .gs_pre_headline{
		font-size: 1.8rem;
		text-align: center;
	}
	
	/***推奨点***/
	.guess_area{}
	.guess_area .guess_point,
	.guess_area .guess_link,
	.guess_area .guess_nolink{
		font-size: 1.6rem;
		margin: 1em auto 0.5em auto;
	}
	
	/*****
	ポイント講習会
	*****/
	.present_2ji_bunseki{
		margin-bottom: 1em;
	}
	
	.tbl_pointcourse{
		width: auto;
		margin: 0 auto;
	}
	
	/*****
	解答試案プレゼント
	*****/
	/*****
	問題・解答参考例プレゼント
	*****/
	.present_book{
		text-align: center;
		margin-top: 1em;
	}
	/*****
	検定対策
	*****/
	.tbl_course_list tr.tr_ttl{
		display: none;
	}
	
	.tbl_course_list td{
		display: block;
	}
	.tbl_course_list td.table_name{
		width: 100%;
	}
	
	/*---------------------------------------------
	総評
	---------------------------------------------*/
	.tbl_basic{
		font-size: 1.2rem;
	}
	
	table.all_nowrap_sp th,
	table.all_nowrap_sp td{
		white-space: nowrap;
	}
	
	/*---------------------------------------------
	フッター
	---------------------------------------------*/
	#footer{
		line-height: 1.2;
	}
	#footer_nav{
		text-align: left;
	}
	#footer small{
		font-size: 0.85em;
	}
	
	/*---------------------------------------------
	youtube枠
	---------------------------------------------*/
	.movie_cont{
		margin: 20px 0 20px;
  padding: 15px;
	}
}