@charset "utf-8";

/*
=========================== Common CSS =============================

	1.基本設定
	2.レイアウト
	3.ヘッダー
	4.サイドメニュー
	5.フッター

	99.共通クラス

====================================================================
*/



/*--------------------------------------
	基本設定
---------------------------------------*/

body {
	font-family: "Helvetica Neue","Arial","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka, "メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
	-webkit-text-size-adjust:100%;
	font-size: 14px;
	line-height: 1.6;
	min-width: 980px;
	background: #fff;
}
body.iframeInner{
	min-width:1px;
}
li, p, a, dl dt, dl dd {
	color: #000;
}
small{
	font-size:86%;
}
textarea{
	padding:0.5em;
}

@media only screen and (max-width: 767px) {

body {
	min-width: 0;
}

}

a:hover{
	color:#f60;
}
.a--plain{
	text-decoration:none;
}
.a--plain:hover{
	text-decoration:underline;
}
small{
	font-size:86%;
}
input[type="text"], input[type="tel"] {
	padding:5px;
	font-size:100%;
}

label input[type="checkbox"] {
	margin-right:0.5em;
}

/*--------------------------------------
	レイアウト
---------------------------------------*/

.wrapperAll {
	position: relative;
}
.wrapper {
	position: relative;
}
.l_contentsArea {
	border-bottom: solid 1px #eee;
	background: url(../img/bg_sidearea.gif) repeat-y;
	*zoom: 1;
}
.l_contentsArea:after {
	content: "."; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.l_contentsArea {
	min-height: 1px;
}
* html .l_contentsArea {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}
.l_sideArea {
	float: left;
	width: 200px;
	margin-top: 104px;
}
.l_sideMenu{
	border-top: 1px solid #e2d8c1;
	padding-top:18px;
}
.l_mainArea {
	background: #fff;
	margin: 0 0 100px 0;
	overflow: hidden;
	z-index: 0;
}
.l_footer .gotoTop {
	position: relative;
}
.gotoTop__btn img {
    height: 106px;
    width: 106px;
}
.l_footer .gotoTop .gotoTop__btn {
	position: absolute;
	top: -80px;
	left: 55%;
	z-index: 101;
	background: url(../img/bg_gototop_pc.png) no-repeat top right;
	padding: 5px 30px 0 0;
}
.l_footerUpper {
	background: url(../img/bg_footerupper.gif) repeat-x;
}
.l_footerLower {
	background: #eee;
	overflow: hidden;
	padding: 14px 0 12px 0;
	font-size: 95%;
}
.l_footerUpperInner,
.l_fooerLowerInner {
	width: 980px;
	margin: 0 auto;
}


@media only screen and (max-width: 767px) {
	
.l_contentsArea {
	background: #fff;
}
.l_sideArea {
	background: none;
	float: none;
	width: 100%;
	padding-bottom: 0;
	margin-bottom: 0;
	margin-top: 0;
}
.l_mainArea {
	padding: 75px 0 0 0;
	margin: 0 auto 30px !important;
}
.pcMenu {
	display: none;
}
.l_mainArea {
	margin: 0;
}
.gotoTop__btn img {
	width: 90px;
	height: 90px;
}
.l_footer .gotoTop .gotoTop__btn {
	top: -75px;
	left: 38%;
	background: url(../img/bg_gototop_sp.png) no-repeat top right;
	background-size: 55px auto;
	padding: 5px 25px 0 0;
}
.l_footerUpperInner,
.l_fooerLowerInner {
	width: 100%;
}
.l_footerUpper {
}

.l_footerLower {
	background: url(../img/bg_footerupper_sp.gif) repeat-x #fff;
	background-size:57px auto;
	padding: 50px 0 40px 0;
}

}

@media only screen and (max-width: 767px) {
/* -----------------------------------
 * Slidebars
 * Version 0..10
 * http://plugins.adchsm.me/slidebars/
 *
 * Written by Adam Smith
 * http://www.adchsm.me/
 *
 * Released under MIT License
 * http://plugins.adchsm.me/slidebars/license.txt
 */

html, body, .sb-site, .sb-site-container, .sb-slidebar {
	/* Set box model to prevent any user added margins or paddings from altering the widths or heights. */
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
html, body {
	width: 100%;
	overflow-x: hidden; /* Stops horizontal scrolling. */
}
html {
	height: 100%; /* Site is as tall as device. */
}
body {
	min-height: 100%;
	height: auto;
	position: relative; /* Required for static Slidebars to function properly. */
}
html.sb-scroll-lock.sb-active:not(.sb-static) {
	overflow: hidden; /* Prevent site from scrolling when a Slidebar is open, except when static Slidebars are only available. */
}
.sb-site, .sb-site-container {
	/* You may now use class .sb-site-container instead of .sb-site and use your own id. However please make sure you don't set any of the following styles any differently on your id. */
	width: 100%;
	position: relative;
	z-index: 1; /* Site sits above Slidebars */
	background-color: #ffffff; /* Default background colour, overwrite this with your own css. I suggest moving your html or body background styling here. Making this transparent will allow the Slidebars beneath to be visible. */
}
.sb-slidebar {
	height: 100%;
	overflow-y: auto; /* Enable vertical scrolling on Slidebars when needed. */
	position: fixed;
	top: 0;
	z-index: 0; /* Slidebars sit behind sb-site. */
	display: none; /* Initially hide the Slidebars. Changed from visibility to display to allow -webkit-overflow-scrolling. */
	background-color: #222222; /* Default Slidebars background colour, overwrite this with your own css. */
	-webkit-transform: translate(0px); /* Fixes issues with translated and z-indexed elements on iOS 7. */
}
.sb-left {
	left: 0; /* Set Slidebar to the left. */
}
.sb-right {
	right: 0; /* Set Slidebar to the right. */
}
html.sb-static .sb-slidebar,
.sb-slidebar.sb-static {
	position: absolute; /* Makes Slidebars scroll naturally with the site, and unfixes them for Android Browser < 3 and iOS < 5. */
}
.sb-slidebar.sb-active {
	display: block; /* Makes Slidebars visibile when open. Changed from visibility to display to allow -webkit-overflow-scrolling. */
}
.sb-style-overlay {
	z-index: 9999; /* Set z-index high to ensure it overlays any other site elements. */
}
.sb-momentum-scrolling {
	-webkit-overflow-scrolling: touch; /* Adds native momentum scrolling for iOS & Android devices. */
}
.sb-slide, .sb-site, .sb-site-container, .sb-slidebar {
	-webkit-transform:translate(0px);
	   -moz-transform:translate(0px);
	     -o-transform:translate(0px);
	        transform:translate(0px);
	-webkit-transition: -webkit-transform 300ms ease;
	   -moz-transition: -moz-transform 300ms ease;
	     -o-transition: -o-transform 300ms ease;
	        transition: transform 300ms ease;
	-webkit-transition-property: -webkit-transform, left, right; /* Add left/right for Android < 4.4. */
	-webkit-backface-visibility: hidden; /* Prevents flickering. This is non essential, and you may remove it if your having problems with fixed background images in Chrome. */
}
.sb-hide { 
	display: none; /* Optionally applied to control classes when Slidebars is disabled over a certain width. */
}
.spMenu.sb-active {
	display: block;
	float:right;
}
.overlay {
	z-index: 200;
	position: fixed;
	top: 0;
right: 0;
right: 264px\0;
right: 264px\9;
/*left: 0;
left: 264px\0;
left: 264px\9;*/
	width: 100%;
	height: 120%;
	background-color: rgba(0,0,0,0.5);
}
}



/*--------------------------------------
	ヘッダー
---------------------------------------*/

.headerMenu {
	display: none;
}
.l_header {
	position: absolute;
	top: 0;
	left: 0;
	padding: 40px 0 0 17px;
	z-index: 1102;
}
.logo a {
	display: block;
	background: url(../img/logo_pc.png) no-repeat;
	width: 166px;
	height: 28px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

@media only screen and (max-width: 767px) {

.l_header {
	width: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	padding: 24px 0;
	border-bottom: solid 1px #eaeaea;
	z-index: 1102;
	background:rgba(255,255,255,0.9);
}
.logo a {
	background: url(../img/logo_sp.png) no-repeat;
	width: 172px;
	height:28px;
	background-size: 172px auto;
	margin: 0 auto;
}
.headerMenu {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
/*	left: 20px;*/
	cursor: pointer;
	padding: 17px 20px 15px 0;
}


}



/*--------------------------------------
	サイドメニュー
---------------------------------------*/

.searchBalloon {
	display: none;
	position: absolute;
	top: -15px;
	left: 180px;
	background: url(../img/bg_searchBalloon.png) no-repeat left 35px;
	padding: 0 0 0 12px;
}
.searchBalloon__inner {
	background: #e8ff50;
	border: solid 12px #e8ff50;
	border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
	-o-border-radius: 20px;
	-ms-border-radius: 20px;
	width: 523px;
}
.searchBalloon__shearchBox {
	background: #fff;
	border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	margin: 0 auto 10px;
	padding: 25px 20px 20px;
}
.searchBalloon__shearchTtl {
	margin: 0 auto 15px;
}
.searchBalloon__shearchList {
	overflow: hidden;
	margin: 0 0 10px 0;
}
.searchBalloon__shearchList > li {
	float: left;
	background: url(../img/line_searchballoon_searchList.gif) no-repeat left center;
	padding: 0 0 0 10px;
	margin: 0 0 0 4px;
	font-size: 86%;
	line-height:1;
}
.searchBalloon__shearchList > li:first-child {
	background: none;
	padding: 0;
	margin: 0;
}
.searchBalloon__myshopBox {
	background: #fff url(../img/bg_searchballoon_myshop.gif) no-repeat right bottom;
	border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	margin: 0 auto 12px;
	padding: 25px 20px;
}
.searchBalloon__myshopTtl {
	margin: 0 auto 15px;
}
.searchBalloon__myshopTxt {
	font-size: 86%;
	line-height: 1.6;
	margin: 0 auto 10px;
}
.searchBalloon__myshopShearch a {
	background: url(../img/icon_searchballoon_arrow.png) no-repeat 0 52%;
	padding: 3px 0 3px 25px;
	line-height:1;
}
.searchBalloon__gotoTop {
	text-align: center;
	padding: 7px 0;
}
.searchBalloon__gotoTop a {
	background: url(../img/icon_searchballoon_arrow.png) no-repeat right center;
	padding: 0 25px 0 0;
	font-size: 115%;
	text-decoration: none;
}
.sideMyshopAera {
	background: url(../img/bg_sidemyshoparea.png) no-repeat;
	width: 170px;
	height: 120px;
	margin: 0 auto 10px;
}
.sideMyshopAera__ttl {
	padding: 14px 0 3px;
	text-align: center;
}
.sideMyshopAera__shopList .hide {
	display: none;
}
.sideMyshopAera__shop {
	text-align: center;
	margin: 0 auto;
	overflow: hidden;
}
.sideMyshopAera__shop dt {
	margin: 0 auto 3px;
	font-size:86%;
}
.sideMyshopAera__shop dt a {
	color: #fe4800;
}
.sideMyshopAera__btn {
	text-align: center;
	letter-spacing: -.40em;
}
.sideMyshopAera__btn > li {
	display: inline-block;
	letter-spacing: normal;
	*display: inline;
	*zoom: 1;
	background: #ccc;
	height: 8px;
	width: 8px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-o-border-radius: 4px;
	-ms-border-radius: 4px;
	margin: 0 4px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	*text-indent: 0;
	*white-space: normal;
	*overflow: visible;
}
.sideMyshopAera__btn > li span {
	*display: none;
}
.sideMyshopAera__btn > li a {
	background: #ccc;
	display: block;
	height: 8px;
	width: 8px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-o-border-radius: 4px;
	-ms-border-radius: 4px;
}
.sideMyshopAera__btn > li a:hover {
	background: #000;
}
.sideMyshopAera__btn > li a.select {
	background: #000;
}
.l_sideArea .gNav {
	margin: 0 auto 24px;
	border-top: solid 1px #e2d8c1;
}
.l_sideArea .gNav > li {
	border-bottom: solid 1px #e2d8c1;
}
.l_sideArea .gNav > li > a {
	display: block;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.l_sideArea .gNav__search {
	position: relative;
	z-index: 101;
	background: url(../img/icon_gnav_search_pc.gif) no-repeat 25px center;
}
/*.l_sideArea .gNav__search:hover {
	background: url(../img/icon_gnav_search_pc_on.gif) no-repeat 25px center;
}*/
.l_sideArea .gNav__search > a {
	background: url(../img/btn_gnav_search_pc_off.png) no-repeat 75px center;
	height: 47px;
	padding: 12px 0;
}
.l_sideArea .gNav__search > a:hover {
	background: url(../img/btn_gnav_search_pc_on.png) no-repeat 75px center;
}
.l_sideArea .gNav__flier {
	background: url(../img/icon_gnav_flier_pc.gif) no-repeat 28px center;
}
/*.l_sideArea .gNav__flier:hover {
	background: url(../img/icon_gnav_flier_pc_on.gif) no-repeat 28px center;
}*/
.l_sideArea .gNav__flier a {
	background: url(../img/btn_gnav_flier_pc_off.png) no-repeat 75px center;
	height: 47px;
	padding: 12px 0;
}
.l_sideArea .gNav__flier a:hover {
	background: url(../img/btn_gnav_flier_pc_on.png) no-repeat 75px center;
}
.l_sideArea .gNav__products {
	background: url(../img/icon_gnav_products_pc.gif) no-repeat 32px center;
}
/*.l_sideArea .gNav__products:hover {
	background: url(../img/icon_gnav_products_pc_on.gif) no-repeat 32px center;
}*/
.l_sideArea .gNav__products a {
	background: url(../img/btn_gnav_products_pc_off.png) no-repeat 75px center;
	height: 47px;
	padding: 12px 0;
}
.l_sideArea .gNav__products a:hover {
	background: url(../img/btn_gnav_products_pc_on.png) no-repeat 75px center;
}
.l_sideArea .gNav__jkakaku a {
	background: url(../img/btn_gnav_jkakaku_pc_off.png) no-repeat 70px center;
	height: 15px;
	padding: 12px 0;
}
.l_sideArea .gNav__jkakaku a:hover {
	background: url(../img/btn_gnav_jkakaku_pc_on.png) no-repeat 70px center;
}
.l_sideArea .gNav__service a {
	background: url(../img/btn_gnav_service_pc_off.png) no-repeat 70px center;
	height: 15px;
	padding: 12px 0;
}
.l_sideArea .gNav__service a:hover {
	background: url(../img/btn_gnav_service_pc_on.png) no-repeat 70px center;
}
.l_sideArea .gNav__company {
	background: url(../img/icon_gnav_window_pc.png) no-repeat 144px center;
}
.l_sideArea .gNav__company a {
	background: url(../img/btn_gnav_company_pc_off.png) no-repeat 55px center;
	height: 15px;
	padding: 12px 0;
}
.l_sideArea .gNav__company a:hover {
	background: url(../img/btn_gnav_company_pc_on.png) no-repeat 55px center;
}
.l_sideArea .gNav__recruit {
	background: url(../img/icon_gnav_window_pc.png) no-repeat 134px center;
}
.l_sideArea .gNav__recruit a {
	background: url(../img/btn_gnav_recruit_pc_off.png) no-repeat 70px center;
	height: 15px;
	padding: 12px 0;
}
.l_sideArea .gNav__recruit a:hover {
	background: url(../img/btn_gnav_recruit_pc_on.png) no-repeat 70px center;
}
.sideSearchArea {
	position: relative;
	overflow: hidden;
	background: #fff;
	width: 137px;
	margin: 0 auto 8px;
	padding: 4px 5px;
	border: solid 1px #e2e2e2;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
}
.sideSearchArea__txt {
	float: left;
	width: 110px;
	border: none;
	padding: 3px
}
.sideSearchArea__btn {
	vertical-align: middle;
	padding: 3px 0;
}
.sideLanguageArea {
	margin: 0 auto 13px;
	text-align: center;
}
.sideSnsArea {
	text-align: center;
	letter-spacing: -.40em;
	margin: 0 auto 25px;
}
.sideSnsArea li {
	display: inline-block;
	letter-spacing: normal;
	*display: inline;
	*zoom: 1;
	margin: 0 4px 0 5px;
}
.sideSnsArea li img {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	border: 2px solid #f8ecd5;
}
.sideSnsArea li a img:hover{
	border: 2px solid #ffe100;
}
.sideBnrArea > li {
	margin: 0 auto 10px;
	width: 165px;
/*	height: 65px;*/
}
.sideBnrArea > li img {
	width: 100%;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	border: 2px solid #f8ecd5;
}
.sideBnrArea > li img:hover {
	border: 2px solid #ffe100;
}
.spMenu {
	background: url(../img/bg_sidearea.gif) repeat;
	display: none;
	width: 264px;
}
.pcMenu {
	margin-bottom: 230px;
}
.followMenu {
	left: 0;
	width: 200px;
	z-index: 101;
}
.followMenu__logo a {
	display: block;
	background: url(../img/logo_pc.png) no-repeat;
	width: 148px;
	height: 49px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	margin: 27px auto;
}
.followMenu .gotoTop {
	text-align: center;
	width: 70px;
	margin: 0 auto;
	background: url(../img/bg_gototop_pc.png) no-repeat top right;
	padding: 40px 50px 10px;
}



@media only screen and (max-width: 767px) {

.sideMyshopAera {
	display: none;
}
.spMenu {
	-webkit-overflow-scrolling: touch;
}
.spMenu .gNav {
	margin: 20px auto 24px;
	border-top: solid 1px #e2d8c1;
}
.spMenu .gNav > li {
	border-bottom: solid 1px #e2d8c1;
}
.spMenu .gNav > li > a {
	display: block;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.spMenu .gNav__search {
	background: url(../img/icon_gnav_search_sp.gif) no-repeat 62px center;
	background-size: 44px 44px;
}
.spMenu .gNav__search a {
	padding: 16px 0 16px 0;
	background: url(../img/btn_gnav_search_sp.png) no-repeat 117px center;
	background-size: 82px 39px;
	height: 39px;
}
.spMenu .gNav__search > a:hover {
	background: url(../img/btn_gnav_search_sp.png) no-repeat 117px center;
	background-size: 82px 39px;
}
.spMenu .gNav__flier {
	background: url(../img/icon_gnav_flier_sp.gif) no-repeat 64px center;
	background-size: 40px 44px;
}
.spMenu .gNav__flier a {
	padding: 16px 0 16px 0;
	background: url(../img/btn_gnav_flier_sp.png) no-repeat 117px center;
	background-size: 85px 39px;
	height: 39px;
}
.spMenu .gNav__flier > a:hover {
	background: url(../img/btn_gnav_flier_sp.png) no-repeat 117px center;
	background-size: 85px 39px;
}
.spMenu .gNav__products {
	background: url(../img/icon_gnav_products_sp.gif) no-repeat 64px center;
	background-size: 35px 44px;
}
.spMenu .gNav__products a {
	padding: 16px 0 16px 0;
	background: url(../img/btn_gnav_products_sp.png) no-repeat 115px center;
	background-size: 77px 39px;
	height: 39px;
}
.spMenu .gNav__products > a:hover {
	background: url(../img/btn_gnav_products_sp.png) no-repeat 115px center;
	background-size: 77px 39px;
}
.spMenu .gNav__jkakaku a {
	background: url(../img/btn_gnav_jkakaku_sp.png) no-repeat 103px center;
	background-size: 62px 39px;
	height: 39px;
}
.spMenu .gNav__jkakaku a:hover {
	background: url(../img/btn_gnav_jkakaku_sp.png) no-repeat 103px center;
	background-size: 62px 39px;
}
.spMenu .gNav__service a {
	background: url(../img/btn_gnav_service_sp.png) no-repeat 103px center;
	background-size: 62px 39px;
	height: 39px;
}
.spMenu .gNav__service a:hover {
	background: url(../img/btn_gnav_service_sp.png) no-repeat 103px center;
	background-size: 62px 39px;
}
.spMenu .gNav__company {
	background: url(../img/icon_gnav_window_sp.png) no-repeat 178px center;
	background-size: 10px 10px;
}
.spMenu .gNav__company a {
	background: url(../img/btn_gnav_company_sp.png) no-repeat 90px center;
	background-size: 84px 39px;
	height: 39px;
}
.spMenu .gNav__company a:hover {
	background: url(../img/btn_gnav_company_sp.png) no-repeat 90px center;
	background-size: 84px 39px;
}
.spMenu .gNav__recruit {
	background: url(../img/icon_gnav_window_sp.png) no-repeat 168px center;
	background-size: 10px 10px;
}
.spMenu .gNav__recruit a {
	background: url(../img/btn_gnav_recruit_sp.png) no-repeat 103px center;
	background-size: 62px 39px;
	height: 39px;
}
.spMenu .gNav__recruit a:hover {
	background: url(../img/btn_gnav_recruit_sp.png) no-repeat 103px center;
	background-size: 62px 39px;
}
.sideSearchArea {
	width: 190px;
	margin: 20px auto 15px;
}
.sideSearchArea__txt {
	width: 160px;
}
.sideBnrArea > li {
	width: 200px;
/*	padding-bottom: 15px;*/
}
.spMenu .l_sideMenu {
	padding-bottom: 30px;
	background: url(../img/bg_sidearea.gif) repeat;
}
.followMenu {
	display: none !important;
}

}



/*--------------------------------------
	フッター
---------------------------------------*/

.footerBnrArea {
	display: none;
}
.footerGroup__ttl {
	font-size: 108%;
	font-weight: bold;
	padding: 60px 0 15px;
}
.footerGroup__link {
	letter-spacing: -.40em;
	border-bottom: solid 1px #eee;
	padding: 0 0 25px 0;
	margin: 0 auto 30px;
}
.footerGroup__link > li {
	display: inline-block;
	letter-spacing: normal;
	*display: inline;
	*zoom: 1;
	margin: 0 25px 0 0;
}
.footerGroup__link > li a:hover{
	filter: alpha(opacity=65);
	-moz-opacity:0.65;
	opacity:0.65;
}
.footerSiteMap {
	margin: 0 auto 60px;
}
.footerSiteMap__search,
.footerSiteMap__products,
.footerSiteMap__service,
.footerSiteMap__contact {
	float: left;
	width: 185px;
	padding: 0 25px 0 0;
}
.footerSiteMap__company {
	float: left;
	width: 140px;
	padding: 0;
}
.footerSiteMap__searchTtl {
	background: url(../img/icon_footerSitemap_search.gif) no-repeat left center;
	font-size: 108%;
	font-weight: bold;
	padding: 15px 0 10px 48px;
	margin: 0 0 10px 0;
}
.footerSiteMap__searchTtl a {
	font-weight: bold;
	text-decoration: none;
}
.footerSiteMap__searchTtl a:hover {
	text-decoration: underline;
}
.footerSiteMap__productsTtl {
	background: url(../img/icon_footerSitemap_products.gif) no-repeat left center;
	font-size: 108%;
	font-weight: bold;
	padding: 15px 0 10px 48px;
	margin: 0 0 10px 0;
}
.footerSiteMap__productsTtl a {
	font-weight: bold;
	text-decoration: none;
}
.footerSiteMap__productsTtl a:hover {
	text-decoration: underline;
}
.footerSiteMap__serviceTtl {
	background: url(../img/icon_footerSitemap_service.gif) no-repeat left center;
	font-size: 108%;
	font-weight: bold;
	padding: 15px 0 10px 48px;
	margin: 0 0 10px 0;
}
.footerSiteMap__serviceTtl a {
	font-weight: bold;
	text-decoration: none;
}
.footerSiteMap__serviceTtl a:hover {
	text-decoration: underline;
}
.footerSiteMap__contactTtl {
	background: url(../img/icon_footerSitemap_contact.gif) no-repeat left center;
	font-size: 108%;
	font-weight: bold;
	padding: 15px 0 10px 48px;
	margin: 0 0 10px 0;
}
.footerSiteMap__contactTtl a {
	font-weight: bold;
	text-decoration: none;
}
.footerSiteMap__contactTtl a:hover {
	text-decoration: underline;
}
.footerSiteMap__companyTtl {
	background: url(../img/icon_footerSitemap_company.gif) no-repeat left center;
	font-size: 108%;
	font-weight: bold;
	padding: 15px 0 10px 48px;
	margin: 0 0 10px 0;
}
.footerSiteMap__companyTtl a {
	font-weight: bold;
	text-decoration: none;
}
.footerSiteMap__companyTtl a:hover {
	text-decoration: underline;
}
.footerSiteMap__searchList,
.footerSiteMap__productsList,
.footerSiteMap__serviceList,
.footerSiteMap__contactList,
.footerSiteMap__companyList {
	margin: 0 0 0 48px;
}
.footerSiteMap__searchList > li,
.footerSiteMap__productsList > li,
.footerSiteMap__serviceList > li,
.footerSiteMap__contactList > li,
.footerSiteMap__companyList > li {
	margin: 0 0 5px 0;
	font-size: 86%;
	line-height: 1.5;
}
.footerSiteMap__searchList > li a,
.footerSiteMap__productsList > li a,
.footerSiteMap__serviceList > li a,
.footerSiteMap__contactList > li a,
.footerSiteMap__companyList > li a {
	text-decoration: none;
}
.footerSiteMap__searchList > li a:hover,
.footerSiteMap__productsList > li a:hover,
.footerSiteMap__serviceList > li a:hover,
.footerSiteMap__contactList > li a:hover,
.footerSiteMap__companyList > li a:hover {
	text-decoration: underline;
}

.fooerLowerList > li {
	float: left;
	margin: 0 20px 0 0;
	font-size: 86%;
}
.fooerLowerList > li a {
	text-decoration: none;
}
.fooerLowerList > li a:hover {
	text-decoration: underline;
}
.fooerLowerList > li button#ot-sdk-btn {
    border: none;
    padding: 0;
    color: #000;
    font-size: 100%;
    background: none;
}
.fooerLowerList > li button#ot-sdk-btn:hover {
	background: none;
    color: #f60;
    text-decoration: underline;
}
.fooerLowerCopyright {
	float: right;
}


@media only screen and (max-width: 767px) {

.footerBnrArea {
	display: block;
	padding: 40px 20px 0;
	margin: 0 auto 30px;
}
.footerBnrArea > li {
	width: 48%;
	float: left;
	margin: 0 0 10px 0;
}
.footerBnrArea > li img {
	width: 100%;
	border: solid 1px #ececec;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
}

.footerGroup__link {
	border-bottom: none;
	padding: 0 20px 15px;
	margin: 20px auto 0;
}
.footerGroup__link > li {
	margin: 0 3.5% 8px 0;
	width: 31%;
}
.footerGroup__link > li img {
	border: solid 1px #e8e8e8;
	width: 100%;
	border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
}
.footerSiteMap__ttl a {
	display: block;
	font-size: 108%;
	font-weight: normal;
	padding: 15px 0;
	text-align: center;
	background:  #fdfdfd url(../img/icon_footer_arrow.gif) no-repeat 94.5% 50%;
	background-size: 6px auto;
	text-decoration: none;
	color: #000;
}
.fooerLowerList {
	margin: 0 auto 27px;
}
.fooerLowerList > li {
	float: none;
	text-align: center;
	margin: 0 auto 11px;
	font-size: 108%;
}
.fooerLowerCopyright {
	float: none;
	text-align: center;
}




}


/*-------アコーディオン-------*/

.footerAccordion__ttl {
	pointer-events: none;
}
.footerSiteMap__ttl {
	display: none;
}

@media only screen and (min-width: 768px) {

.footerAccordion__item {
	display: block !important;
}

}

@media only screen and (max-width: 767px) {
	
.footerAccordion__ttl {
	pointer-events: auto;
	cursor: pointer;
	font-size: 108%;
	font-weight: normal;
	padding: 15px 0;
	text-align: center;
	background:  #fdfdfd url(../img/icon_footerAccordion_arrow.gif) no-repeat 95% 50%;
	background-size: 9px auto;
}
.footerAccordion__ttl.on {
	background:  #fdfdfd url(../img/icon_footerAccordion_arrow_on.gif) no-repeat 95% 50%;
	background-size: 9px auto;
}
.footerGroup__ttl {
	border-top: solid 1px #ebebeb;
	border-bottom: solid 1px #ebebeb;
}
.footerGroup__link {
	border-bottom: solid 1px #ebebeb;
}
.footerSiteMap__ttl {
	border-bottom: solid 1px #ebebeb;
}
.footerAccordion__item {
	display: none;
}
.footerSiteMap__ttl {
	display: block;
}


}



/*--------------------------------------
	共通クラス
---------------------------------------*/

/* css pie */
.pie {
	position: relative;
}
/*　スマートフォンで改行 */
.sp_only {
	display: none;
}
.pc_only{
	display:inline;
}
ul.pc_only{
	display:block;
}
ul.sp_only{
	display:none;
}
@media only screen and (max-width: 767px) {
.sp_only {
	display: inline;
}
.pc_only{
	display:none;
}
ul.pc_only{
	display:none;
}
ul.sp_only {
	display: block;
}
}

/*リード文*/
.lead{
	font-size:108%;
}

/* タイトルエリア
 ---------------------------------*/

.hdrArea {
	background: url(../img/bg_hdrarea.gif) repeat-x left center;
	height: 104px;
	overflow: hidden;
	border-bottom: solid 2px #ffe200;
}
.hdrArea__ttl {
	float: left;
	font-size: 225%;
	font-weight: bold;
	padding: 26px 0 0 25px
}
.hdrArea__donpen {
	float: right;
	margin: 0 30px 0 0;
	*width: 168px;
}
.hdrArea__donpen img {
	width: 100%;
}

@media only screen and (max-width: 767px) {

.hdrArea {
	height: 52px;
	background-size: cover;
	border-bottom: solid 1px #ffe200;
}
.hdrArea__ttl {
	font-size: 115%;
	padding: 13px 0 0 12px
}
.hdrArea__donpen {
	margin: 0 12px 0 0;
}
.hdrArea__donpen img {
	width: auto !important;
	height: 52px;
}

}

/* 本文エリア
 ---------------------------------*/
 .cts{
	 padding: 45px 8% 0;
 }
@media only screen and (max-width: 767px) {
	.cts{
		padding: 15px 0 0;
		min-width:0;
	}
}


/* SNSエリア
 ---------------------------------*/
.snsArea {
	letter-spacing: -.40em;
}
.snsArea li {
	display: inline-block;
	letter-spacing: normal;
	*display: inline;
	*zoom: 1;
	margin: 0 4px 0 5px;
}
.snsArea li:first-child {
	margin-left:0;
}
.snsArea li:last-child {
	margin-right:0;
}

.fb_iframe_widget > span {
  vertical-align: baseline !important;
}
.fb_iframe_widget span {height: 20px; z-index: 0; overflow: hidden;}
.tablet .twitter-tweet-button{
	position:static !important;
	max-height:30px;
}


/* 見出し
 ---------------------------------*/
 /*----- 見出し -----*/
.hdr2{
	 margin-bottom:40px;
	 border-bottom:solid 2px #ffe200;
	background:url(/common/img/title_bg.png) #f9efd9;
 }
 .hdr.hdr2{
	 padding: 16px 15px 13px 15px;
 }
 .hdr.hdr2, .hdr2 .hdrBlock__title{
	font-size:143%;
 }

 .hdr3{
	 margin-bottom:40px;
	background:url(/common/img/title_bg.png) #f9efd9;
 }
 .hdr.hdr3{
	 padding:12px 15px 12px;
 }
 .hdr.hdr3, .hdr3 .hdrBlock__title{
	font-size:115%;
 }

 .hdr4{
	margin-bottom:20px;
	border-bottom:solid 1px #ebebeb;
 }
 .hdr.hdr4{
	 padding:0 15px 14px;
 }
 .hdr.hdr4, .hdr4 .hdrBlock__title{
	font-size:116%;
 }
 
 .hdr.hdr5{
	 margin:0 0 0.3em;
	 font-size:100%;
	 font-weight:bold;
 }
/*----- 見出しの中に他の要素が入るブロック -----*/
 .hdrBlock{
	 display:table;
	*display:inline;
	*zoom:1;
	/position:relative;
	 width:100%;
 }
.hdr2.hdrBlock{
	 height:4.4em;
}
.hdr3.hdrBlock{
	 height:2.4em;
}
 .hdrBlock__title{
	 display:table-cell;
	*display:inline;
	*zoom:1;
	/position:absolute;
	/top:0.3em;
	/left:0;
	vertical-align:middle;
	 margin:0;
	padding:3px 15px 0px 15px;
 }
 .hdrBlock__inner{
	 display:table-cell;
	 *display:inline;
	 *zoom:1;
	 /position:absolute;
	 /right:0;
	 text-align:right;
	 vertical-align:middle;
	padding: 4px 15px 3px 0;
}
.hdrBlock .btn{
	padding-top:13px;
	padding-bottom:13px;
}

@media only screen and (max-width: 767px) {
.hdr2{
	margin-bottom: 25px;
}
 .hdr.hdr2{
	 padding-top: 12px;
	 padding-bottom:10px;
 }
 .hdr.hdr3{
	 padding-top:6px;
	 padding-bottom:6px;
	 font-size:108%;
 }
 .hdr2.hdr--compact{
	 margin-bottom:25px;
 }
  .hdr3.hdr--compact{
	 margin-bottom:25px;
 }
	.hdr.hdr2, .hdr2 .hdrBlock__title{
		font-size:122%;
	 }
	 .hdr.hdr4, .hdr4 .hdrBlock__title{
		font-size:108%;
	 }
	 .hdrBlock{
	 display:block;
	 }
	 .hdr2.hdrBlock, .hdr3.hdrBlock{
	 height:auto;
	 }
	 .hdrBlock.hdrBlock--compact{
		 display:table;
	 }
	 .hdrBlock__title{
		 display:block;
 	}
	.hdrBlock--compact .hdrBlock__title{
		 display:table-cell;
	 }
 	.hdrBlock__inner{
		 display:block;
		 margin:0 auto 1em 0;
	}
	.hdrBlock--compact .hdrBlock__inner{
		 display:table-cell;
	 }
	.hdr2.hdrBlock--compact .hdrBlock__inner{
		 border-bottom:solid 2px #ffe200;
		background:url(/common/img/title_bg.png) #f9efd9;
	 }
	 .hdrBlock.hdr2, .hdrBlock.hdr3, .hdrBlock.hdr4{
		 border:none;
		 background:none;
		 margin-bottom:0;
	 }
	.hdr2 .hdrBlock__title{
		 margin-bottom:10px;
		padding: 12px 15px 10px;
		 border-bottom:solid 2px #ffe200;
		background:url(/common/img/title_bg.png) #f9efd9;
 	}
	.hdr3 .hdrBlock__title{
		 margin-bottom:0.5em;
		padding:13px 15px 14px;
 	}
	 .hdr4 .hdrBlock__title{
		 margin-bottom:0.5em;
 	}
 	.hdr.hdr4{
		 padding:0 15px 14px;
 	}
}

 /* セレクトボックス
 ---------------------------------*/
.customSelect{
	background:url(../img/icon_select_arrow.gif) no-repeat 100% 50%;
	padding:10px 30px 10px 10px;
	border:solid 1px #d3d3d3;
}
.customSelectInner{
	width:100% !important;
}

 /* 検索窓
 ---------------------------------*/
 .searchForm{
	 display:inline-block;
	 *display:inline;
	 *zoom:1;
	 background:#fff;
	 border:solid 1px #e2e2e2;
	 border-radius:5px;
	 padding-right:10px;
}
.searchForm__input{
	display:inline-block;
	 *display:inline;
	 *zoom:1;
	border:none;
	background:none;
	vertical-align:middle;
}
.searchForm__btn{
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle;
}

/* 画像
 ---------------------------------*/
.fig{
	border:solid 1px #ebebeb;
}
 
 /* リンク
 ---------------------------------*/
 .link{
	 *display:inline;
	 *zoom:1;
	 *min-height:17px;
	  *padding-right:21px;
	 *background:url(../img/icon_arrow_r.png) no-repeat 100% 100%;
}
.link:after{
	content: '';
	display:inline-block;
	*display:inline;
	*zoom:1;
	height:17px;
	width:17px;
	margin:0 0 2px 0.5em;
    background:url(../../common/img/icon_arrow_r.png) no-repeat 0 0;
	vertical-align:middle;
}
/*ページ内リンク（下へ）*/
 .link--inPage{
	display:inline-block;
	*display:inline;
	*zoom:1;
	padding:0.8em 1.5em;
	*padding-left:40px;
	border:none;
	border-radius:10px;
	background:#e4e4e4;
	*background-image:url(../../common/img/icon_arrow_b_btn.png);
	*background-repeat:no-repeat;
	*background-position:0 50%;
	color:#000;
	text-decoration:none;
	line-height:1;
 }
.link--inPage:after {
	display:none;
}
.link--inPage:before {
	content: '';
	display:inline-block;
	*display:inline;
	*zoom:1;
	height:17px;
	width:17px;
	margin-right:0.3em;
    background:url(../../common/img/icon_arrow_b.png) no-repeat 0 0;
	vertical-align: -22%;
}
.link--inPage:hover{
	color:#333;
	background:#eee;
}

 /*現在地*/
 .link--now{
	 color:#f90;
 }
 
@media only screen and (max-width: 767px) {
.link:after{
    background:url(../../common/img/icon_arrow_r_sp.png) no-repeat 0 0;
	background-size:13px auto;
	width:13px;
	height:13px;
	margin-bottom:0;
	vertical-align: -15%;
}
.link--inPage:before {
    background:url(../../common/img/icon_arrow_b_sp.png) no-repeat 0 0;
	background-size:13px auto;
}
.hdrBlock__inner .link{
	display:inline-block;
	*display:inline;
	*zoom:1;
	margin:3px;
	padding:12px 15px;
	border:none;
	border-radius:10px;
	background:#ffee60;
	color:#000;
	text-decoration:none;
	font-size: 85%;
	line-height:1;
}
.hdrBlock__inner .link:hover{
	background-color: #fee71d;
}

}

/* リンクリスト
 ---------------------------------*/
 .linkList{
	 letter-spacing:-0.4em;
	 margin:0;
	 padding:0;
 }
 .linkList li{
	 letter-spacing:normal;
	 display:inline-block;
	 *display:inline;
	 *zoom:1;
	 margin-right:1.2em;
 }
 .linkList--inpage li{
	 margin:0 10px 10px 0;
 }
 .linkList--inpage--small li{
	 margin-right:5px;
 }
.linkList--inpage li:last-child, .linkList--inpage--small li:last-child{
	margin-right:0;
}


 
/*短縮型（アイコンなし）*/
.linkList--short > a{
	 display:inline-block;
	 *display:inline;
	 *zoom:1;
	 margin:0 0.8em 0.8em 0;
	 padding-right:1em;
	 border-right:solid 1px #cdcdcd;
	 box-sizing:border-box;
	 text-decoration:none;
	line-height: 1.1em;
 }
 .linkList--short > a:last-child{
	 margin-right:0;
	 padding-right:0;
	 border-right:none;
 }

@media only screen and (max-width: 767px) {
.linkList--short {
	display:-webkit-flex;
	display:flex;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -o-flexbox;
	display: flexbox;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-align-items:stretch;
	-moz-align-items:stretch;
	align-items:stretch;
	letter-spacing: -0.4em;
	font-size: 86%;
	border-top: solid 1px #eaeaea;
	border-left: solid 1px #eaeaea;
	margin: -20px auto 0;
}
.linkList--short > a , .linkList--short >a:last-child{
	display: inline-block;
	*display:inline;
	*zoom:1;
	padding: 10px;
	margin: 0;
	padding: 8px;
	width: 33%;
	box-sizing:border-box;
	letter-spacing:normal;
	text-align: center;
	border: none;
	border-bottom: solid 1px #eaeaea;
	border-right: solid 1px #eaeaea !important;
}
.linkList--short > a.link--now {
	color:#000;
	background:#ffee5f;
}
}

 /* インプット
 ---------------------------------*/
input[type="text"].input--large{
	padding:10px;
	font-size:115%;
}

@media only screen and (max-width: 767px) {
	input[type="text"].input--large{
		padding:5px;
		font-size:100%;
		box-sizing:border-box;
		width:100%;
	}
	.inputBox--large{
		display:table;
		*display:inline;
		*zoom:1;
		width:100%;
	}
	.inputBox--large__input{
		display:table-cell;
		*display:inline;
		*zoom:1;
	}
	.inputBox--large__btn{
		display:table-cell;
		*display:inline;
		*zoom:1;
		width:120px;
	}
}

 /* ボタン
 ---------------------------------*/
.btn{
	display:inline-block;
	margin:3px;
	padding:15px 25px;
	border:none;
	border-radius:10px;
	background:#ffee60;
	color:#000;
	font-size:inherit;
	text-decoration:none;
	line-height:1;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	cursor:pointer;
	overflow:visible;
}
li:last-child > .btn{
	margin-right:0;
}
.btn:after {
	content: '';
	display:inline-block;
	height:17px;
	width:17px;
	margin-left:0.3em;
    background:url(../../common/img/icon_arrow_r.png) no-repeat 0 0;
	vertical-align:-22%;
}
/*input.btn, input:hover.btn{
    background-image:url(../../common/img/icon_arrow_r_btn.png);
	background-position:100% 50%;
	background-repeat:no-repeat;
	padding-right:40px;
}*/
.btn:hover{
	color:#000;
	background-color: #fee71d;
}
/*矢印アイコンを手動で置く場合*/
.btn__arrow{
	display:inline-block;
	height:17px;
	width:17px;
	margin-left:0.3em;
    background:url(../../common/img/icon_arrow_r.png) no-repeat 0 0;
	vertical-align:-50%;
}
@media only screen and (max-width: 767px) {
.btn{
	margin:0;
	border-radius:8px;
}

.btn:after {
    background:url(../../common/img/icon_arrow_r_sp.png) no-repeat 0 0;
	background-size:13px auto;
	width:13px;
	height:13px;
	vertical-align:-10%;
}
/*input.btn, input:hover.btn{
    background-image:url(../../common/img/icon_arrow_r_btn_sp.png);
	background-size:35px auto;
}*/
.btn__arrow{
    background:url(../../common/img/icon_arrow_r_sp.png) no-repeat 0 0;
	background-size:13px auto;
}
}
/*大きなボタン*/
.btn--large{
	padding:23px 45px;
	font-size:122%;
}
/*input.btn--large, input:hover.btn--large{
	padding-right:50px;
}*/
.btn--inputlarge, input.btn--simple.btn--inputlarge, input.btn--simple.btn--inputlarge:hover{
	margin:0 0 0 13px;
	padding:17px 50px;
	letter-spacing:0.5em;
}
/*横幅いっぱいのボタン*/
.btn--full{
	width:100%;
	padding-left:0;
	padding-right:0;
	text-align:center;
}

/*重要なボタン（オレンジ）*/
.btn--important{
	background-color:#ffbc3d;
}
.btn--important:hover{
	background-color: #ffb21e;
}
/*重要でないボタン（グレー）*/
.btn--unimportant{
	background-color:#dcdcdc;
}
.btn--unimportant:hover{
	background-color:#ccc;
}
/*オフボタン（うすグレー）*/
.btn--unactive{
	background-color:#f6f6f6;
}
/*タブのオフボタン*/
.btn--off{
	background-color:#e4e4e4;
}
.btn--off:hover{
	background-color:#efefef;
}
/*矢印アイコンなし*/
.btn--simple:after{
	display:none;
}
/*input.btn--simple, input:hover.btn--simple{
    background-image:none;
	padding-right:25px;
}*/

/*小さなボタン*/
.btn--small:after{
	display:none;
}
/*input.btn--small, input:hover.btn--small,*/ .btn--small{
    background-image:none;
	padding:8px 10px;
	border-radius:4px;
	font-size:77%;
}
/*脇に置くボタン*/
.btn--aside{
	position:absolute;
	right:0;
}
/*脇に置くボタン - 戻る*/
.btn--aside--back{
	position:absolute;
	left:0;
	width:10em;
}
/*フローティングウインドウを開くボタン*/
.btn--open:after {
	height:14px;
	width:14px;
    background:url(../img/icon_arrow_plus.png) no-repeat 0 0;
	vertical-align:middle;
}
/*フローティングウインドウを閉じるボタン*/
.btn--close:after {
	display:none;
}
.btn--close:before {
	content: '';
	display:inline-block;
	height:15px;
	width:15px;
	margin-right:0.3em;
    background:url(../img/icon_arrow_close.png) no-repeat 0 0;
	vertical-align:-15%;
}


@media only screen and (max-width: 767px) {
	.btn--large{
		padding-top: 22px;
		padding-bottom: 22px;
		font-size: 115%;
	}
	.btn--aside{
		display:block;
		position:relative;
		margin:1em auto 0;
	}
	.btn--inputlarge, input.btn--simple.btn--inputlarge, input.btn--simple.btn--inputlarge:hover{
		margin-left:5px;
		padding:10px 35px;
	}
/*脇に置くボタン - 戻る*/
.btn--aside--back{
	position:static;
	display:block;
	margin:40px auto 0;
}
}

/* ボタン領域
 ---------------------------------*/
 .btnArea{
	 position:relative;
	 margin-bottom:45px;
	 text-align:center;
 }
 
 /* ボタンリスト
 ---------------------------------*/
.btnList{
	letter-spacing:-0.4em;
}
.btnList > li{
	display:inline-block;
	*display:inline;
	*zoom:1;
	margin-right:8px;
	letter-spacing:normal;
	vertical-align:bottom;
}
.btnList .btn{
	margin:0;
}
@media only screen and (max-width: 767px) {
.btnList > li{
	display:block;
	width:100%;
	margin-bottom:6px;
}
}
/* ページャー
 ---------------------------------*/
.pager{
	text-align:center;
	letter-spacing:-0.4em;
}
.pager > li{
	display:inline-block;
	*display:inline;
	*zoom:1;
	margin-top:6px;
	letter-spacing:normal;
	list-style:none;
	vertical-align:bottom;
}
.pager__btn{
	display:inline-block;
	*display:inline;
	*zoom:1;
	margin:0 3px;
	padding:0.7em 0.9em;
	border:solid 1px #e4e4e4;
	border-radius:6px;
	font-size:86%;
	line-height:1;
	text-decoration:none;
	vertical-align:bottom;
}
a.pager__btn:hover{
	color:#000;
	background:#f7f7f7;
}
.pager__btn--now{
	background:#ffee5f;1
	border:solid 1px #ffee5f;
}
.pager__btn--prev{
	margin-right:13px;
}
.pager__btn--next{
	margin-left:13px;
}
@media only screen and (max-width: 767px) {
.pager__btn{
	font-size:100%;
	padding:0.8em 1em;
	border-radius:10px;
}

}

/* アイコン
 ---------------------------------*/
.imgicon{
	margin-left:0.8em;
	vertical-align:middle;
}

.texticonArea{
	margin-left:0.6em;
}
.texticon{
	display:inline-block;
	*display:inline;
	*zoom:1;
	margin:0 0.2em 0.3em 0.2em;
	padding:0.4em;
	background:#ffe200;
	font-size:65%;
	font-weight:bold;
	line-height:1;
	vertical-align:middle;
}
a .texticon{
	text-decoration:none;
}
a:hover .texticon{
	color:#000;
}
.texticon.txticon--new{
	background:#ffe200;
}
.texticon.txticon--shop{
	background:#ff88ac;
}
.texticon.txticon--item{
	background:#a5e3eb;
}
.texticon.txticon--campaign{
	background:#c2e990;
}
.texticon.txticon--pdf, a:hover .texticon.txticon--pdf{
	color:#fff;
	background:url(../img/icon_pdf.gif) no-repeat 0.4em 50% #ee1313;
	padding-left:13px;
}
/* アイコンつき見出し
 ---------------------------------*/
.hdr__icon {
	display:inline-block;
	*display:inline;
	*zoom:1;
	margin: -12px 0.5em -9px 0;
	vertical-align:middle;
}
.hdr__icon--s {
	display: inline-block;
	width: 23px;
	height: 23px;
	background: url(../img/icon_star.png) no-repeat;
	margin: -12px 0.5em -10px 0;
	vertical-align: middle;
}
/* パンくず
 ---------------------------------*/

.breadcrumbsArea {
	padding: 20px 25px 0;
	*zoom: 1;
}
.breadcrumbsArea:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.breadcrumbs {
	float: left;
}
.breadcrumbsArea__list > li {
	float: left;
	background: url(../img/icon_breadcrumbs_arrow.png) no-repeat left 7px;
	padding: 0 0 0 22px;
	margin: 0 15px 0 0;
	font-size: 108%;
}
.breadcrumbsArea__list > li:first-child {
	background: none;
	padding: 0;
}
.breadcrumbsArea__snsArea {
	float: right;
}
.breadcrumbsArea__snsArea > li {
	float: left;
	margin: 0 0 0 10px;
}



@media only screen and (max-width: 767px) {

.breadcrumbsArea {
	padding: 10px 15px 0;
}
.breadcrumbsArea__list {
	float: none;
}
.breadcrumbsArea__list > li {
	background: url(../img/icon_breadcrumbs_arrow_sp.png) no-repeat left 5px;
	background-size: auto 7px;
	font-size: 77%;
	padding: 0 0 0 15px;
	margin: 0 10px 0 0;
}
.breadcrumbsArea__snsArea {
	margin: 10px auto 0;
}

}

/*コンテンツ内で使用するもの*/
.breadcrumbsArea--medium__list {
	overflow: hidden;
}
.breadcrumbsArea--medium__list > li {
	float: left;
	background: url(../img/icon_breadcrumbs_arrow.png) no-repeat left center;
	padding: 0 0 0 25px;
	margin: 0 15px 0 0;
}
.breadcrumbsArea--medium__list > li:first-child {
	background: none;
	padding: 0;
}

/* チェックボックス
 ---------------------------------*/
.selectWrapper{
	display:inline-block;
	*display:inline;
	*zoom:1;
}
.column__txt.checkboxWrapper{
	border:none;
}
.checkboxLabel{
	display:inline-block;
	*display:inline;
	*zoom:1;
	margin:0.2em 0;
}
@media only screen and (max-width: 768px) {
.checkboxWrapper{
	border-top:solid 1px #ebebeb;
	border-left:solid 1px #ebebeb;
}
.checkboxBlock{
	display:table;
	width:100%;
}
.checkboxBlock.last--half{
	width:50%;
}
.checkboxLabel{
	display:table-cell;
	box-sizing:border-box;
	width:50%;
	padding:10px 10px 10px 25px;
	margin:0;
	border-right:solid 1px #ebebeb;
	border-bottom:solid 1px #ebebeb;
	letter-spacing:normal;
	text-indent:-1.5em;
	vertical-align:top;
}
.checkbox--area:nth-child(2n){
	border-right:none;
}
.checkbox--area.last--l{
	border-bottom:none;	
	border-radius:0 0 0 15px;
}
.checked {
	background:#ffee5f;
}
}

/* セレクトボックス
 ---------------------------------*/
.esb-dropdown{
	max-height:350px;
	overflow-y:auto;
}

/* 本文ブロック
 ---------------------------------*/
.block--short{
	margin:0 15px 15px;
}
.block--sssmedium{
	margin:0 15px 20px;
}
.block--ssmedium{
	margin:0 15px 25px;
}
.block--smedium{
	margin:0 15px 25px;
}
.block--medium{
	margin:0 15px 40px;
}
.block--large{
	margin:0 15px 60px;
}
.block--narrow{
	margin-left:15px;
	margin-right:15px;
}
.block--short, .block--medium, .block--narrow{
	*zoom:1;
}
.block--short:before, .block--medium:before, .block--narrow:before,
.block--short:after, .block--medium:after, .block--narrow:after{
	display:table;
}
.block--short:after, .block--medium:after, .block--narrow:after{
	content:" ";
	clear:both;
}
@media only screen and (max-width: 767px) {
.block--ssmedium{
	margin-bottom:20px;
}
.block--medium{
	margin-bottom:70px;
}
.block--large{
	margin-bottom:80px;
}
.block--large.block--compact{
	margin-bottom:40px;
}
.block--medium.block--compact{
	margin-bottom:40px;
}
}
/* 囲み記事
 ---------------------------------*/
.column{
	position:relative;
	border:solid 1px #ebebeb;
	border-radius:15px;
}
.column__ttl{
	margin:0;
	padding: 13px 20px 13px 20px;
	border-radius:15px 15px 0 0;
	background:#f6f6f6;
	font-size:115%;
}
.column__ttl--wide{
	padding:  16px 20px 15px 19px;
}
.column__txt{
	padding:20px;
	border-bottom:solid 1px #ebebeb;
}
.column__txt:last-child{
	border-bottom:none;
}

/*囲み記事の最下部につくボタン*/
.column__textWithBtn{
	margin-bottom:52px;
}
.column__btn{
	position:absolute;
	bottom:0;
	display:block;
	padding:16px 0 14px;
	width:100%;
	text-align:center;
	text-decoration:none;
	line-height:1;
	border-top:solid 1px #ebebeb;
	background:#fdfdfd;
	*background-image:url(../../common/img/icon_arrow_r_btn.png);
	*background-repeat:no-repeat;
	*background-position:100% 50%;
	border-radius:0 0 14px 14px;
	font-size: 93%;
}
.column__btn:hover {
	color:#000;
	background-color:#f6f6f6;
}

.column__btn:after {
	content: '';
	display:inline-block;
	height:17px;
	width:17px;
	margin:-2px 0 0 0.8em;
    background:url(../../common/img/icon_arrow_r.png) no-repeat 0 0;
	vertical-align:middle;
}
@media only screen and (max-width: 767px) {
.column__ttl{
	padding-top: 11px;
	padding-bottom:10px;
	font-size:108%;
}
.column__ttl--wide{
	padding: 13px 20px 10px 20px;
	font-size:115%;
}
.column__btn:after {
    background:url(../../common/img/icon_arrow_r_sp.png) no-repeat 0 0;
	background-size:13px auto;
	width:13px;
	height:13px;
}
}

/* 段組み
 ---------------------------------*/
 .grid{
	 display:-webkit-box;
	 display:-moz-box;
	display:-webkit-flex;
	display:flex;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -o-flexbox;
	display: flexbox;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-box-align:stretch;
	-moz-box-align:stretch;
	-webkit-align-items:stretch;
	-moz-align-items:stretch;
	align-items:stretch;
	letter-spacing: -0.4em;
 }
 .grid__grid{
	display: inline-block;
	*display: inline;
	*zoom: 1;
	letter-spacing: normal;
	vertical-align:top;
	box-sizing:border-box;
 }
.grid__nongrid{
	display:block;
	letter-spacing: normal;
	box-sizing:border-box;
}

 /*----- 段組み - 間隔の狭いもの -----*/
.grid2{
	width: 101.8%;
	margin:30px -1.8% 20px 0;
}
.grid2__grid{
	width:48.2%;
	margin: 0 1.8% 15px 0;
}
.ie8 .grid2__grid{
	width:47.9%;
}
.grid3{
    width: 101.3%;
	margin:20px -1.3% 20px 0;
}
.grid3__grid{
	width:23.7%;
    margin: 0 1.3% 15px 0;
}
.ie8 .grid3__grid{
	width:47.6%;
}
@media only screen and (max-width:1379px){
	.grid2{
		margin-bottom:10px;
	}
	.grid3{
	    width: 101.8%;
		margin-right: -1.8%;
	}
	.grid3__grid{
		width:31.5%;
    margin: 0 1.8% 15px 0;
	}
	.ie8 .grid3__grid{
	width:31.1%;
	}
}

@media only screen and (max-width: 767px) {
	.grid2{
		width: 100%;
		margin-right: 0;
	}
	.grid2__grid{
		width:100%;
		margin-right:0;
	}
	.grid3{
		width:100%;
		margin-right:0;
	}
	.grid3__grid{
		width:100%;
		margin-right:0;
	}
}

/*----- 段組み - 間隔のさらに狭いもの -----*/
.grid2--narrow{
	width: 101.4%;
	margin:20px -1.4% 20px 0;
}
.grid2--narrow__grid{
	width:48.6%;
	margin: 0 1.4% 10px 0;
}
.ie8 .grid2--narrow__grid{
	width:48.3%;
}

@media only screen and (max-width: 767px) {
	.grid--narrow2{
		width: 100%;
		margin-right: 0;
	}
	.grid2--narrow__grid{
		width:100%;
		margin-right:0;
	}
}

/*----- 段組み - 間隔の広いもの -----*/
.grid2--wide{
	width: 103.5%;
	margin:20px -3.5% 20px 0;
}
.grid2--wide__grid{
	width:46.5%;
	*width:46.4%;
	margin: 0 3.5% 30px 0;
}
.grid2--wide__nongrid{
	width:96.5%;
	margin-bottom:30px;
}
.ie8 .grid2--wide__grid{
	width:46.2%;
}
.grid3--wide{
    width: 102.5%;
	margin:20px -2.5% 20px 0;
}
.grid3--wide__grid{
	width:22.5%;
    margin: 0 2.5% 30px 0;
}
.ie8 .grid3--wide__grid{
	width:22.2%;
}
@media only screen and (max-width:1379px){
	.grid3--wide{
	    width: 103.3%;
		margin-right: -3.3%;
	}
	.grid3--wide__grid{
		width:30%;
    margin-right: 3.3%;
	}
	.ie8 .grid3--wide__grid{
		width:29.7%;
	}

}
@media only screen and (max-width: 767px) {
	.grid2--wide{
		width: 100%;
		margin-right: 0;
	}
	.grid2--wide__grid{
		width:100%;
		margin-right:0;
	}
	.grid2--wide__nongrid{
	width:100%;
	}
	.grid3--wide{
		width:100%;
		margin-right:0;
	}
	.grid3--wide__grid{
		width:100%;
		margin-right:0;
	}
}

/*----- 段組み - 画像用（スマホでも段組みになる） -----*/
.gridImg3{
    width: 101.3%;
	margin:20px -1.3% 20px 0;
}
.gridImg3__grid{
	width:23.7%;
    margin: 0 1.3% 15px 0;
}
.ie8 .gridImg3__grid{
		width:23.4%;
}
.gridImg3--wide{
    width: 103%;
	margin:20px -3% 20px 0;
}
.gridImg3--wide__grid{
	width:22%;
    margin: 0 3% 30px 0;
}
.ie8 .gridImg3--wide__grid{
		width:21.7%;
}
@media only screen and (max-width:1379px){
	.gridImg3{
	    width: 101.8%;
		margin-right: -1.8%;
	}
	.gridImg3__grid{
		width:31.5%;
    margin: 0 1.8% 15px 0;
	}
	.ie8 .gridImg3__grid{
		width:31.2%;
	}
	.gridImg3--wide{
	    width: 103.5%;
		margin-right: -3.5%;
	}
	.gridImg3--wide__grid{
		width:29.8%;
    margin-right: 3.5%;
	}
	.ie8 .gridImg3--wide__grid{
		width:29.5%;
	}
}
@media only screen and (max-width: 767px) {
	.gridImg3{
	    width: 103%;
		margin-right: -3%;
	}
	.gridImg3__grid{
		width:47%;
    margin: 0 3% 10px 0;
	}
	.gridImg3--wide{
	    width: 104%;
		margin-right: -4%;
	}
	.gridImg3--wide__grid{
		width:46%;
	    margin-right: 4%;
	}
}

/*----- 段組み - 画像用 - マージンのないもの -----*/
.gridImg4--fit{
}
.gridImg4--fit__grid{
	width:20%;
}
@media only screen and (max-width:1379px){
	.gridImg4--fit__grid{
		width:25%;
	}
}
@media only screen and (max-width:1068px){
	.gridImg4--fit__grid{
		width:33%;
	}
}

@media only screen and (max-width: 767px) {
	.gridImg4--fit__grid{
		width:50%;
	}
}

/* モーダルウインドウ（フローティングウインドウ）
 ---------------------------------*/
html.remodal-is-locked {
    overflow: hidden;
}
.remodal, [data-remodal-id] {
    display: none;
}
.remodal-overlay {
    bottom: -5000px;
    display: none;
    left: -5000px;
    position: fixed;
    right: -5000px;
    top: -5000px;
    z-index: 9999;
}
.remodal-wrapper {
    bottom: 0;
    display: none;
    left: 0;
    overflow: auto;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    z-index: 10000;
}
.remodal-wrapper::after {
    content: "";
    display: inline-block;
    height: 100%;
    margin-left: -0.05em;
}
.remodal-overlay, .remodal-wrapper {
    backface-visibility: hidden;
}
.remodal {
    outline: medium none;
    position: relative;
}
.remodal-is-initialized {
    display: inline-block;
}
.remodal {
    margin: 40px auto;
    min-height: 0;
    width: 75%;
}
@media only screen and (max-width: 767px) {
.remodal {
    margin: 20px auto;
    width: 95%;
}
}
.lt-ie9 .remodal-overlay {
}
.lt-ie9 .remodal {
    margin: 20px auto;
    min-height: 0;
    width: 700px;
}
.lt-ie9 .remodal-close::after {
    margin: auto;
    text-align: center;
}
.lt-ie9 .remodal-close:hover, .lt-ie9 .remodal-close:active {
    background: transparent none repeat scroll 0 0;
}
.lt-ie9 .remodal-close.remodal-close:hover::after, .lt-ie9 .remodal-close.remodal-close:active::after {
    color: #3e5368;
}
.remodal, .remodal-wrapper::after {
    vertical-align: middle;
}
.remodal-is-initialized {
    display: inline-block;
}
.remodal img {
    max-width: 100%;
}
.iframeWrapper {
    background: #fff none repeat scroll 0 0;
    border-radius: 25px;
    overflow: hidden;
    text-align: left;
}
.remodal-overlay {
    background: url("../img/bg_window.png");
}
.remodal-close-top {
    background: #ffbc3c url("../img/icon_arrow_close_white.png") no-repeat scroll 18px 17px;
    border: medium none;
    border-radius: 10px;
    display: block;
    height: 50px;
    overflow: hidden;
    position: absolute;
    right: -17px;
    text-indent: 140%;
    top: -17px;
    white-space: nowrap;
    width: 50px;
	z-index:10;
}
.remodal-close-bottom {
    -moz-appearance: none;
    background: #ffee60 none repeat scroll 0 0;
    border: medium none;
    border-radius: 10px;
    color: #000;
    cursor: pointer;
    display: block;
    font-size: 110%;
    line-height: 1;
    margin: 2em auto;
    overflow: visible;
    padding: 1.5em 1em;
    text-align: center;
    text-decoration: none;
    width: 10em;
}
.remodal-close-bottom::before {
    background: rgba(0, 0, 0, 0) url("../img/icon_arrow_close.png") no-repeat scroll 0 0;
    content: "";
    display: inline-block;
    height: 15px;
    margin-right: 0.3em;
    vertical-align: -15%;
    width: 15px;
}
@media only screen and (max-width: 767px) {
.remodal-close-top {
    position: absolute;
    right: -5px;
    top: -5px;
}
}
/* Keyframes
   ========================================================================== */

.remodal.remodal-is-opening {
  animation: remodal-opening-keyframes 0.3s;
}

.remodal.remodal-is-closing {
  animation: remodal-closing-keyframes 0.3s;
}
.remodal-overlay.remodal-is-opening {
  animation: remodal-overlay-opening-keyframes 0.3s;
}

.remodal-overlay.remodal-is-closing {
  animation: remodal-overlay-closing-keyframes 0.3s;
}

@keyframes remodal-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* モーダルウインドウ（フローティングウインドウ）
 ---------------------------------*/
.iframeWrapper{
	border-radius:25px;
	overflow:hidden;
	background:#fff;
}
.iframeWrapper:after{
	content:"";
	display:table;
	clear:both;
}

/*
    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; z-index:10001;}
#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.
*/
#colorbox_wrapper{
	height: 100%;
    left: 0;
    overflow: auto;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}
#colorbox{
	position:relative !important;
/*	margin:50px 0 100px;*/
}
#cboxContent, #cboxWrapper {overflow:visible;}
#cboxOverlay{background:url(../img/bg_window.png);}
#colorbox{outline:0; overflow:visible !important;}
        .cboxIframe{background:#fff; border-radius:25px;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{ /*overflow:hidden;*/ overflow:visible !important;}
        #cboxTitle{position:absolute; bottom:0px; left:0; text-align:center; width:100%; color:#999;}
        #cboxCurrent{position:absolute; bottom:0px; left:100px; color:#999;}
        #cboxLoadingOverlay{background:#fff;}
		/*#cboxLoadingOverlay{background:#fff url(images/loading.gif) no-repeat 5px 5px;}*/

        /* 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; bottom:0px; right:42px; color:#444;}
        #cboxPrevious{position:absolute; bottom:0px; left:0; color:#444;}
        #cboxNext{position:absolute; bottom:0px; left:63px; color:#444;}
        #cboxClose{position:absolute; top:-17px; right:-17px; display:block; color:#444; width:50px; height:50px; border-radius:10px; background:url(../img/icon_arrow_close_white.png) no-repeat 18px 17px #ffbc3c; text-indent:120%; white-space:nowrap; overflow:hidden;}
        #cboxCloseL{
			position:absolute;
			bottom:-6em;
			left:50%;
			display:block;
			margin-left:-5em;
	padding:1.5em 35px;
	border:none;
	border-radius:10px;
	background:#ffee60;
	color:#000;
	font-size:110%;
	text-decoration:none;
	line-height:1;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	cursor:pointer;
	overflow:visible;
	}
#cboxCloseL:before {
	content: '';
	display:inline-block;
	height:15px;
	width:15px;
	margin-right:0.3em;
    background:url(../img/icon_arrow_close.png) no-repeat 0 0;
	vertical-align:-15%;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

@media only screen and (max-width: 767px) {
        #cboxLoadedContent{ margin-bottom:5em;}
        #cboxClose{top:-7px; right:-7px; width:35px; height:35px; border-radius:10px; background:url(../img/icon_arrow_close_white.png) no-repeat 13px 13px #ffbc3c; background-size:9px auto;}
        #cboxCloseL{ padding:1.1em 40px;}

}
/* Media queries
   ========================================================================== */

@media only screen and (min-width: 40.063em) /* min-width 641px */ {
    .remodal {
        max-width: 700px;
        min-height: 0;
        margin: 20px auto;

        -webkit-border-radius: 6px;
        border-radius: 6px;
    }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F021242E, endColorstr=#F021242E);
}

.lt-ie9 .remodal {
    width: 700px;
    min-height: 0;
    margin: 20px auto;
}

.lt-ie9 .remodal-close:after {
    margin: auto;

    text-align: center;
}

.lt-ie9 .remodal-close:hover,
.lt-ie9 .remodal-close:active {
    background: transparent;
}

.lt-ie9 .remodal-close:hover.remodal-close:after,
.lt-ie9 .remodal-close:active.remodal-close:after {
    color: #3e5368;
}

/* スライダー（カルーセル）
 ---------------------------------*/

.slider .bx-wrapper{
	margin:20px 50px 35px;
	position:relative;
}
.slider .bx-controls-direction a {
    border-radius: 8px;
    height: 35px;
    margin-top: -17px;
    outline: 0 none;
    overflow: hidden;
    position: absolute;
    text-indent: 100%;
    top: 50%;
    white-space: nowrap;
    width: 35px;
}
.slider .bx-controls-direction a:hover {
	background-color: #fee71d;
}
.slider .bx-prev {
    background: url(../img/icon_arrow_sq_l.png) no-repeat scroll 50% 50% #ffee5f;
    left: -50px;
}
.slider .bx-next {
    background: url(../img/icon_arrow_sq_r.png) no-repeat scroll 50% 50% #ffee5f;
    right: -50px;
}
.slider .bx-pager {
    bottom: -35px;
    left: 50%;
    position: absolute;
}
.slider .bx-pager-item {
    display: inline-block;
}
.slider .bx-pager.bx-default-pager a {
    background: #e4e4e4;
    border-radius: 5px;
    display: block;
    height: 9px;
    margin: 0 5px;
    outline: 0 none;
    text-indent: -9999px;
    width: 9px;
}
.slider .bx-pager.bx-default-pager a:hover, .slider .bx-pager.bx-default-pager a.active {
	background:#ffee5f;
}
@media only screen and (max-width: 767px) {
.slider .bx-wrapper{
	margin:5px 0 20px;
}
.slider--single .bx-wrapper{
	margin:5px 50px 20px;
}
.bnrCaption{
	margin-bottom:15px;
}
.slider .bx-pager {
	bottom:-20px;
}
}

/* easy-select-box
 ---------------------------------*/
 
.easy-select-box {
	display:inline-block;
	position:relative;
}
.easy-select-box .esb-dropdown {
	position:absolute;
	top:100%;
	z-index:99;
	display:none;
	border: solid 1px #d3d3d3;
	border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	box-shadow:rgba(181, 181, 181, 0.498039) 0px 5px 5px -5px,
	rgba(181, 181, 181, 0.498039) -5px 0 5px -5px,
	rgba(181, 181, 181, 0.498039) 5px 0 5px -5px;
}
.easy-select-box .esb-displayer {
	background: url(../img/icon_cmnselect_pc.gif) no-repeat right center;
	padding: 10px;
	cursor: pointer;
	border: solid 1px #d4d4d4;
	border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	font-size:108%;
	line-height:1;
}
.easy-select-box .esb-item {
	padding: 12px;
	background: url(../img/icon_cmnselect_arrow_pc.png) no-repeat 15px center;
	background-color: #fff;
	text-align: center;
	cursor: pointer;
	border-bottom: solid 1px #f5f5f5;
	line-height:1;
}
.easy-select-box .esb-item:hover {
	background-color: #f8f8f8;
	color: #ff6600;
}
.easy-select-box .esb-item:first-child {
	border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
	-o-border-radius: 5px 5px 0 0;
	-ms-border-radius: 5px 5px 0 0;
}
.easy-select-box .esb-item:last-child {
	border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
	-o-border-radius: 0 0 5px 5px;
	-ms-border-radius: 0 0 5px 5px;
}

@media only screen and (max-width: 767px) {

.easy-select-box .esb-displayer {
	background: url(../img/icon_cmnselect_sp.gif) no-repeat right center;
	background-size: 26px auto;
	font-size: 86%;
}
.easy-select-box .esb-item {
	padding: 11px 10px 10px;
	background: url(../img/icon_cmnselect_arrow_sp.png) no-repeat 15px center;
	background-size: 3px 5px;
	background-color: #fff;
	font-size: 86%;
}
	
}


/*言語選択*/

.choiceLanguage {
	text-align: center;
	margin-bottom: 20px;
}
.choiceLanguage .easy-select-box {
	width: 147px;
}
.choiceLanguage .esb-displayer {
	background: url(../img/bg_language.gif) no-repeat left top;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border: none;
	padding: 0;
	height: 30px;
}
.choiceLanguage .esb-displayer.on {
	background: url(../img/bg_language_on.gif) no-repeat left top;
}
.choiceLanguage .esb-dropdown {
	border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
	-o-border-radius: 0 0 5px 5px;
	-ms-border-radius: 0 0 5px 5px;
}
.choiceLanguage .esb-item {
	border: none;
	font-size: 86%;
	padding: 4px 0;
}
.choiceLanguage .esb-item:first-child {
	background: #000;
	display: none;
}

.choiceLanguage_sp {
	text-align: center;
	margin:30px 0 10px;
}
.choiceLanguage_sp .easy-select-box {
	width: 200px;
}
.choiceLanguage_sp .esb-displayer {
	background: url(../img/bg_language_sp.gif) no-repeat left top;
	background-size: 200px auto;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border: none;
	padding: 0;
	height: 30px;
}
.choiceLanguage_sp .esb-displayer.on {
	background: url(../img/bg_language_sp_on.gif) no-repeat left top;
	background-size: 200px auto;
}
.choiceLanguage_sp .esb-dropdown {
	border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
	-o-border-radius: 0 0 5px 5px;
	-ms-border-radius: 0 0 5px 5px;
}
.choiceLanguage_sp .esb-item {
	font-size: 86%;
	padding: 8px 0;
}
.choiceLanguage_sp .esb-item:first-child {
	background: #000;
	display: none;
}



@media only screen and (max-width: 767px) {
.choiceLanguage_sp {
	margin: 20px auto 15px;
	width: 200px;
	position: relative;
}
.choiceLanguage_sp__ttl {
	background: url(../img/bg_language_sp.gif) no-repeat left top;
	background-size: 200px auto;
	width: 200px;
	height: 31px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
}
.choiceLanguage_sp__ttl.on {
	background: url(../img/bg_language_sp_on.gif) no-repeat left top;
	background-size: 200px auto;
}
.choiceLanguage_sp__list {
	box-shadow:rgba(0, 0, 0, 0.1) 0px 3px 5px 1px;
	-webkit-box-shadow:rgba(0, 0, 0, 0.1) 0px 3px 5px 1px;
	-moz-box-shadow:rgba(0, 0, 0, 0.1) 0px 3px 5px 1px;
	display: none;
	width: 200px;
	position: absolute;
	top: 30px;
	left: 0;
	border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
	-o-border-radius: 0 0 5px 5px;
	-ms-border-radius: 0 0 5px 5px;
	z-index: 1;
}
.choiceLanguage_sp__itme a {
	display: block;
	padding: 8px 10px 10px;
	background: url(../img/icon_cmnselect_arrow_sp.png) no-repeat 15px center;
	background-size: 3px 5px;
	background-color: #fff;
	font-size: 86%;
	border-bottom: solid 1px #ebebeb;
	text-decoration: none;
}
.choiceLanguage_sp__itme:last-child a {
	border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
	-o-border-radius: 0 0 5px 5px;
	-ms-border-radius: 0 0 5px 5px;
	border: none;
}
}

/*言語選択*/

.choiceLanguage {
	text-align: center;
	margin-bottom: 20px;
}
.choiceLanguage .easy-select-box {
	width: 147px;
}
.choiceLanguage .esb-displayer {
	background: url(../img/bg_language.gif) no-repeat left top;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border: none;
	padding: 0;
	height: 30px;
}
.choiceLanguage .esb-displayer.on {
	background: url(../img/bg_language_on.gif) no-repeat left top;
}
.choiceLanguage .esb-dropdown {
	border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
	-o-border-radius: 0 0 5px 5px;
	-ms-border-radius: 0 0 5px 5px;
}
.choiceLanguage .esb-item {
	border: none;
	font-size: 86%;
	padding: 4px 0;
}
.choiceLanguage .esb-item:first-child {
	background: #000;
	display: none;
}

.choiceLanguage_sp {
	text-align: center;
	margin-bottom: 10px;
}
.choiceLanguage_sp .easy-select-box {
	width: 200px;
}
.choiceLanguage_sp .esb-displayer {
	background: url(../img/bg_language_sp.gif) no-repeat left top;
	background-size: 200px auto;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border: none;
	padding: 0;
	height: 30px;
}
.choiceLanguage_sp .esb-displayer.on {
	background: url(../img/bg_language_sp_on.gif) no-repeat left top;
	background-size: 200px auto;
}
.choiceLanguage_sp .esb-dropdown {
	border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
	-o-border-radius: 0 0 5px 5px;
	-ms-border-radius: 0 0 5px 5px;
}
.choiceLanguage_sp .esb-item {
	font-size: 86%;
	padding: 8px 0;
}
.choiceLanguage_sp .esb-item:first-child {
	background: #000;
	display: none;
}


.choiceLanguage_pc {
	margin: 0 auto 15px;
	width: 147px;
	position: relative;
}
.choiceLanguage_pc__ttl {
	background: url(../img/bg_language.gif) no-repeat left top;
	width: 147px;
	height: 31px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
}
.choiceLanguage_pc__ttl.on {
	background: url(../img/bg_language_on.gif) no-repeat left top;
}
.choiceLanguage_pc__list {
	box-shadow:rgba(0, 0, 0, 0.1) 0px 3px 5px 1px;
	-webkit-box-shadow:rgba(0, 0, 0, 0.1) 0px 3px 5px 1px;
	-moz-box-shadow:rgba(0, 0, 0, 0.1) 0px 3px 5px 1px;
	display: none;
	width: 147px;
	position: absolute;
	top: 30px;
	left: 0;
	border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
	-o-border-radius: 0 0 5px 5px;
	-ms-border-radius: 0 0 5px 5px;
	z-index: 1;
}
.choiceLanguage_pc__itme a {
	display: block;
	padding: 4px 10px 5px;
	background: url(../img/icon_cmnselect_arrow_pc.png) no-repeat 15px center #fff;
	font-size: 86%;
	text-decoration: none;
	text-align: center;
}
.choiceLanguage_pc__itme a:hover {
	background: url(../img/icon_cmnselect_arrow_pc.png) no-repeat 15px center #f8f8f8;
}
.choiceLanguage_pc__itme:last-child a {
	border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
	-o-border-radius: 0 0 5px 5px;
	-ms-border-radius: 0 0 5px 5px;
}

@media only screen and (max-width: 767px) {
.choiceLanguage_sp {
	margin: 0 auto 15px;
	width: 200px;
	position: relative;
}
.choiceLanguage_sp__ttl {
	background: url(../img/bg_language_sp.gif) no-repeat left top;
	background-size: 200px auto;
	width: 200px;
	height: 31px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
}
.choiceLanguage_sp__ttl.on {
	background: url(../img/bg_language_sp_on.gif) no-repeat left top;
	background-size: 200px auto;
}
.choiceLanguage_sp__list {
	box-shadow:rgba(0, 0, 0, 0.1) 0px 3px 5px 1px;
	-webkit-box-shadow:rgba(0, 0, 0, 0.1) 0px 3px 5px 1px;
	-moz-box-shadow:rgba(0, 0, 0, 0.1) 0px 3px 5px 1px;
	display: none;
	width: 200px;
	position: absolute;
	top: 30px;
	left: 0;
	border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
	-o-border-radius: 0 0 5px 5px;
	-ms-border-radius: 0 0 5px 5px;
	z-index: 1;
}
.choiceLanguage_sp__itme a {
	display: block;
	padding: 8px 10px 10px;
	background: url(../img/icon_cmnselect_arrow_sp.png) no-repeat 15px center;
	background-size: 3px 5px;
	background-color: #fff;
	font-size: 86%;
	border-bottom: solid 1px #ebebeb;
	text-decoration: none;
}
.choiceLanguage_sp__itme:last-child a {
	border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
	-o-border-radius: 0 0 5px 5px;
	-ms-border-radius: 0 0 5px 5px;
	border: none;
}
}




/* その他汎用的なモジュール
 ---------------------------------*/
/*----- バナーとキャプションの組み合わせ -----*/
.bnrCaption__bnr{
	display:block;
	width:100%;
	height:auto;
	margin-bottom:1em;
}
/*----- バナーとキャプションの組み合わせ - ボタン状のもの -----*/
.service__bnrAreaTxt1 {
	font-size: 115%;
	font-weight: bold;
	margin: 10px auto 0;
}
.service__bnrAreaTxt2 {
	display: inline-block;
	text-decoration: none;
	margin: 10px auto 0;
}


@media only screen and (max-width: 768px) {

.service__bnrArea a {
	/*display: block;*/
	border: solid 1px #ebebeb;
	padding: 10px;
	border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	text-decoration: none;
}
.service__bnrAreaTxt1 {
	display: inline-block;
	font-size: 86%;
	line-height: 1.2;
	margin: 5px auto 0;
}
.service__bnrAreaTxt1:after {
	content: '';
	display: inline-block;
	height: 17px;
	width: 17px;
	margin: 4px 0 2px 5px;
	background: url(../../common/img/icon_arrow_r_sp.png) no-repeat 0 0;
	background-size: 13px auto;
	vertical-align: middle;
}
.service__bnrAreaTxt2 {
	font-size: 79%;
	margin: 5px auto 0;
}

}


/*----- 画像、キャプション、アイコンのリスト -----*/
.column__txt.tmbicnlist{
	padding:0;
}
.tmbicnlist{
	display:table;
	width:100%;
}
.tmbicnlist__tmb{
	display:table-cell;
	*display:inline;
	*zoom:1;
	vertical-align:top;
	width:107px;
	padding:20px 0 20px 20px;
}
.tmbicnlist__txt{
	display:table-cell;
	*display:inline;
	*zoom:1;
	*width:70%;
	vertical-align:top;
	padding:20px;
}
.tmbicnlist__icn{
	display:table-cell;
	*display:inline;
	*zoom:1;
	vertical-align:top;
	width:30px;
	padding:15px 20px;
}
@media only screen and (max-width: 767px) {
	.tmbicnlist__txt{
		padding: 15px 20px 20px 15px;
	}
	.tmbicnlist__tmb, .tmbicnlist__tmb img{
		width:60px;
	}
	.tmbicnlist__icn, .tmbicnlist__icn img{
		width:20px;
	}
}


/*----- 画像、キャプションのリスト（画像大） -----*/
.tmbicnlist__tmb--l{
	width:210px;
	padding:20px 0 20px 20px;
}
.tmbicnlist__txt--l {
	padding: 20px;
}
@media only screen and (max-width: 767px) {
.tmbicnlist__tmb--l{
	display:block;
	width:auto;
	padding:20px;
}
.tmbicnlist__txt--l {
	display:block;
	width:auto;
	padding:0 20px 20px;
}
.tmbicnlist__tmb--l img{
	width:100%;
}
}

/*----- チェックボックスリスト -----*/
.search__checkbox{
	display:inline-block;
	*display:inline;
	*zoom:1;
	margin:0.2em 0;
}
@media only screen and (max-width: 767px) {
.checkboxWrapper{
	padding:0;
}
.hdrBlock .checkboxWrapper{
	margin:-10px 0 20px;
	border-top:none;
}
.search__checkbox{
	display:table-cell;
	box-sizing:border-box;
	width:50%;
	padding:10px 10px 10px 32px;
	margin:0;
	border-right:solid 1px #ebebeb;
	border-bottom:solid 1px #ebebeb;
	font-size:93%;
	letter-spacing:normal;
	text-indent:-1.5em;
	text-align:left;
	vertical-align:top;
}
.search__checkbox:nth-child(2n){
	border-right:none;
}
.search__checkbox.last--l{
	border-bottom:none;
	border-radius:0 0 0 15px;
}
}

