@charset "utf-8";
/*=================================
colorbox.css
- default
- custom
- layout
- module
media
- print
clearfix
================================ */

/**********************************

  COLORBOX

**********************************/

/* default
-------------------------------- */
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#000; opacity: 0.9; filter: alpha(opacity = 90);}
#colorbox{outline:0;}
    #cboxContent{margin-top:20px;background:#000;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{border:5px solid #000; background:#fff;}
        #cboxTitle{position:absolute; top:-20px; left:0; color:#ccc;}
        #cboxCurrent{position:absolute; top:-20px; right:0px; color:#ccc;}
        #cboxLoadingGraphic{background:url(/common/img/loading.gif) no-repeat center center;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}
        
        #cboxSlideshow{position:absolute; top:-20px; right:90px; color:#fff;}
        #cboxPrevious{position:absolute; top:50%; left:5px; margin-top:-32px; background:url(/common/img/controls02.png) no-repeat top left; width:28px; height:65px; text-indent:-9999px;}
        #cboxPrevious:hover{background-position:bottom left;}
        #cboxNext{position:absolute; top:50%; right:5px; margin-top:-32px; background:url(/common/img/controls02.png) no-repeat top right; width:28px; height:65px; text-indent:-9999px;}
        #cboxNext:hover{background-position:bottom right;}
        #cboxClose{position:absolute; top:5px; right:5px; display:block; background:url(/common/img/controls02.png) no-repeat top center; width:38px; height:19px; text-indent:-9999px;}
        #cboxClose:hover{background-position:bottom center;}


/* custom
-------------------------------- */
#colorbox,
#cboxOverlay,
#cboxWrapper { overflow: visible !important; }
#cboxOverlay{ background: #000; opacity: 0.5; filter: alpha(opacity = 50); }
#cboxPrevious,
#cboxNext { background: none; }

#colorbox.cb_layout02 *,
#colorbox.cb_layout04 * {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.cb_layout01 #cboxContent,
.cb_layout02 #cboxContent,
.cb_layout03 #cboxContent,
.cb_layout04 #cboxContent,
.cb_layout05 #cboxContent {
	margin-top: 0;
}
.cb_layout01 #cboxLoadedContent,
.cb_layout02 #cboxLoadedContent,
.cb_layout03 #cboxLoadedContent,
.cb_layout04 #cboxLoadedContent {
	padding: 0;
	border: none;
	background-color: #ffffff;
}
.cb_layout05 #cboxLoadedContent {
	padding: 10px;
	border: none;
	background-color: #ffffff;
}
.cb_layout01 #cboxPrevious,
.cb_layout02 #cboxPrevious,
.cb_layout03 #cboxPrevious,
.cb_layout04 #cboxPrevious,
.cb_layout05 #cboxPrevious,
.cb_layout01 #cboxNext,
.cb_layout02 #cboxNext,
.cb_layout03 #cboxNext,
.cb_layout04 #cboxNext,
.cb_layout05 #cboxNext {
	display: none !important;
}
.cb_layout01 #cboxContent #cboxClose,
.cb_layout02 #cboxContent #cboxClose,
.cb_layout04 #cboxContent #cboxClose,
.cb_layout05 #cboxContent #cboxClose {
	right: -10px;
	top: -10px;
	width: 32px;
	height: 30px;
	border-radius: 50%;
	background-color: #555555;
	background-image: url(/common/img/sp_com_bg01.png);
	background-repeat: no-repeat;
	background-position: -81px -63px;
	background-size: 250px auto;
	text-indent: -9999px;
	outline: none;
}
.cb_layout03 #cboxContent #cboxClose {
	right: 0;
	top: 0;
	width: 38px;
	height: 50px;
	background-color: #555555;
	background-image: none;
	text-indent: -9999px;
	outline: none;
}
.cb_layout03 #cboxContent #cboxClose:before {
	content: "";
	position: absolute;
	right: 4px;
	top: 29px;
	display: block;
	width: 28px;
	height: 2px;
	background-color: #fff;
	-webkit-transform: translateY(-6px) rotate(45deg);
	        transform: translateY(-6px) rotate(45deg);
}
.cb_layout03 #cboxContent #cboxClose:after {
	content: "";
	position: absolute;
	right: 4px;
	top: 29px;
	display: block;
	width: 28px;
	height: 2px;
	background-color: #fff;
	-webkit-transform: translateY(-6px) rotate(-45deg);
	        transform: translateY(-6px) rotate(-45deg);
}


/* layout
-------------------------------- */
.cb_page {
}
.cb_page#cb-compare-result {
	background-color: #fff;
}
.cb_head {
	clear: both;
}
.cb_layout01 .cb_head {
}
.cb_main {
	clear: both;
}
.cb_layout01 .cb_main {
	padding: 0 10px 15px;
}
.cb_layout02 .cb_main {
	padding:  0 10px 15px;
}
.cb_layout03 .cb_main {
	padding: 20px 0 0 0;
}
.cb_layout04 .cb_main {
	padding:  15px 10px;
}
.cb_foot {
	clear: both;
}
.cb_layout01 .cb_foot {
	padding: 10px;
	background-color: #f2f2f2;
}
.cb_head > *:first-child,
.cb_main > *:first-child,
.cb_foot > *:first-child {
	margin-top: 0 !important;
}

.cb_layout01 .cb_main .tab02 {
	margin: 0 -10px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	overflow-x: hidden;
}
.cb_layout01 .cb_main .tab02 > [id*="tab-initial"] {
	height: 200px;
	overflow-y: scroll;
}
.cb_layout01 .cb_main .tab02 > .tabWrap,
.cb_layout01 .cb_main .tab02 > .tabDetail02 {
	width: 100%;
	margin: 0;
	padding: 0 10px;
	border-bottom: none;
	overflow-x: hidden;
}
.cb_layout01 .cb_main .tab02 .tabWrap > .tabList02 {
	display: block;
	white-space: normal;
}
.cb_layout01 .cb_main .tab02 .tabWrap > .tabList02 > li {
	float: left;
	display: block;
	width: 23.5%;
	margin: 0 0 0 2%;
	padding: 0;
}
.cb_layout01 .cb_main .tab02 .tabWrap > .tabList02 > li:nth-child(4n+1) {
	clear: left;
	margin-left: 0;
}
.cb_layout01 .cb_main .tab02 .tabWrap > .tabList02 > li:nth-child(n+5) {
	margin-top: 5px;
}
.cb_layout01 .cb_main .tab02 .tabWrap > .tabList02 > li > a {
	display: block;
	padding: 5px;
	border: 1px solid #e6e6e6;
	border-radius: 5px;
	background-color: #fff;
	-webkit-box-shadow: 0px 1px 0px 0px rgba(222,222,222,1.0);
	   -moz-box-shadow: 0px 1px 0px 0px rgba(222,222,222,1.0);
	    -ms-box-shadow: 0px 1px 0px 0px rgba(222,222,222,1.0);
	     -o-box-shadow: 0px 1px 0px 0px rgba(222,222,222,1.0);
	        box-shadow: 0px 1px 0px 0px rgba(222,222,222,1.0);
	color: #333333;
	font-weight: bold;
	text-decoration: none !important;
	text-align: center;
}
.cb_layout01 .cb_main .tab02 .tabWrap > .tabList02 > li.on > a {
	border-color: #bd1212;
	background-color: #bd1212;
	color: #fff;
}
.cb_layout01 .cb_main .tab02 .tabWrap > .tabList02 > li > a > span {
}
.cb_layout01 .cb_main .tab02 > .tabDetail02 {
	clear: both;
	margin: 15px 0 0 0;
}
.cb_layout01 .cb_main .tab02 > .tabDetail02 .iconLinkList01.threeColType > li {
	float: left;
	width: 49%;
	margin: 0 0 0 2%;
}
.cb_layout01 .cb_main .tab02 > .tabDetail02 .iconLinkList01.threeColType > li:nth-child(2n+1) {
	clear: left;
	margin-left: 0;
}
.cb_layout01 .cb_main .tab02 > .tabDetail02 .iconLinkList01.threeColType > li:nth-child(n+3) {
	margin-top: 10px;
}
.cb_layout01 .cb_main .tab02 > .tabDetail02 > *:first-child {
	margin-top: 0 !important;
}
.cb_layout01 .cb_main #sitenInitialSearch {
}
.cb_layout01 .cb_main #sitenInitialSearch > *:first-child {
	margin-top: 0 !important;
}
.cb_layout01 .cb_main #sitenInitialSearch > .searchResult {
}
.cb_layout01 .cb_main #sitenInitialSearch > .searchResult > *:first-child {
	margin-top: 0 !important;
}
.cb_layout01 .cb_main #sitenNumSearch {
}
.cb_layout01 .cb_main #sitenNumSearch > *:first-child {
	margin-top: 0 !important;
}
.cb_layout01 .cb_main #sitenNumSearch > .searchCond {
}
.cb_layout01 .cb_main #sitenNumSearch > .searchCond > *:first-child {
	margin-top: 0 !important;
}
.cb_layout01 .cb_main #sitenNumSearch > .searchCond #sitenSearchBtn a {
	min-width: 0;
}
.cb_layout01 .cb_main #sitenNumSearch > .searchCond #sitenSearchBtn a span {
	padding: 0.7em 2em 0.6em 2.5em;
}
.cb_layout01 .cb_main #sitenNumSearch > .searchResult {
	clear: both;
	padding: 20px 0 10px;
}
.cb_layout01 .cb_main #sitenNumSearch > .searchResult > *:first-child {
	margin-top: 0 !important;
}
.cb_layout01 .cb_main #sitenInitialSearch + .btnLink01,
.cb_layout01 .cb_main #sitenNumSearch + .btnLink01 {
	margin-top: 2em;
}
.cb_layout01 .cb_main .formTable > .entrySet .entry th,
.cb_layout01 .cb_main .formTable > .entrySet .entry td {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.cb_layout02 .cb_main .resultBox01 > .boxHdg01 {
	padding: 12px 10px 10px;
	margin: 0 -10px;
	background-color: #a4cd55;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
}
.cb_layout02 .cb_main .resultBox01 > .boxCnt01 {
	padding: 15px 0 0 !important;
}
.cb_layout02 .cb_main .resultBox01.type-maru > .boxCnt01 {
	padding: 40px 0 0 !important;
}
.cb_layout02 .cb_main .resultBox01.type-sankaku > .boxCnt01 {
	padding: 40px 0 0 !important;
}
.cb_layout02 .cb_main .connectWrap01.type-arrow2 {
	margin: 20px 0 10px;
}
.cb_layout02 .cb_layout02 .cb_main .connectWrap01 + .actionWrap {
	margin-top: 20px;
}
.cb_layout02 .cb_main .resultBox01.type-maru > .boxCnt01 { min-height: 200px; padding: 55px 0 45px; background-image: url(/common/img/com_bg05_01_sp.png); background-size: auto 117px; }
.cb_layout02 .cb_main .resultBox01.type-sankaku > .boxCnt01 { min-height: 200px; padding: 55px 0 45px; background-image: url(/common/img/com_bg05_02_sp.png); background-size: auto 117px; }
.cb_layout02 .cb_main .resultBox01.type-maru > .boxCnt01 > .result { margin: 0 0 45px 0; }
.cb_layout02 .cb_main .resultBox01.type-sankaku > .boxCnt01 > .result { margin: 0 0 45px 0; }

.cb_foot {
	clear: both;
}
.cb_layout01 .cb_foot {
}
.cb_layout02 .cb_foot {
}
.cb_layout03 .cb_foot {
	padding: 15px 0 0 0;
}
.cb_layout04 .cb_foot {
	padding: 0 10px 15px;
}
.cb_head > *:first-child,
.cb_main > *:first-child,
.cb_foot > *:first-child {
	margin-top: 0 !important;
}

.cb_inline_container {
	clear: both;
	display: none;
	margin: 20px 0 0 0;
}
.cb_inline_container > *:first-child {
	margin-top: 0 !important;
}


/* module
-------------------------------- */
.cb_hdg01 {
	color: #777777;
	font-size: 1.6rem;
	text-align: center;
}
.cb_hdg_wrap01 {
	clear: both;
	padding: 15px 25px;
}
.cb_hdg_wrap01 > .hdg {
	color: #777777;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
}
.cb_hdg_wrap01 > .btn {
	position: absolute;
	right: 0;
	top: 0;
	margin-top: 0;
	text-align: right;
}
.cb_hdg_wrap01 > .btn.btnLink01 a {
	min-width: 0;
}
.cb_hdg_wrap01 > .btn.btnLink01 a span {
	padding: 0.8em 1em 0.8em 2.5em;
}

.cb_list01 > li {
	position: relative;
	margin-top: 0.5em;
	padding-left: 1em;
}
.cb_list01 > li:first-child {
	margin-top: 0;
}
.cb_list01 > li:before {
	content: "";
	position: absolute;
	top: 0.4em;
	left: 0;
	display: inline-block;
	width: 7px;
	height: 7px;
	background: #777777;
}



/**********************************

  MEDIA

**********************************/

/* print
-------------------------------- */
@media print {
	body.cb_active #header,
	body.cb_active #navigation,
	body.cb_active #topicPathArea,
	body.cb_active #container,
	body.cb_active #footer,
	body.cb_active #pageTop,
	body.cb_active #forPrintWrap {
		display: none !important;
	}
	#cboxOverlay {
		background: #ffffff !important;
	}
	#colorbox {
		left: 0 !important;
		top: 0 !important;
		z-index: 9999 !important;
	}
	#colorbox,
	#cboxWrapper,
	#cboxContent,
	#cboxLoadedContent {
		height: auto !important;
		overflow: visible !important;
	}
	#cboxPrevious,
	#cboxNext,
	#cboxClose {
		display: none !important;
	}
}


/* clearfix
-------------------------------- */
.cb_layout01 .cb_main .tab02 .tabWrap > .tabList02:after {
	content : "";
	display : block;
	clear : both;
}


