@charset "shift_jis"; 

/*********************************************************
共通設定
*********************************************************/


/*
見出し
*********************************************************/

/*サイトロゴ画像*/
h1{}
/*ページタイトル*/
h2 {
}
.pTtl h2 {
	text-align:center;
	color:#fff;
	font-size:2em;
	font-weight:bold;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
/*タイトル*/
h3 {
	background: -moz-linear-gradient(top, #222222, #000000);
	background: -webkit-linear-gradient(top, #222222, #000000);
	background: linear-gradient(to bottom, #222222, #000000);
	padding:20px;
	margin-bottom:10px;
	line-height:1em;
	color:#fff;
	font-size:1.3em;
	font-weight:bold;
	/*シャドウ（順序 横・下・ぼかし・広がり・色）*********************/ 
	box-shadow: 0 0 3px 0px rgba(0,0,0,0.3); 
	-moz-box-shadow: 0 0 3px 0px rgba(0,0,0,0.3); 
	-o-box-shadow: 0 0 3px 0px rgba(0,0,0,0.3); 
	-webkit-box-shadow: 0 0 3px 0px rgba(0,0,0,0.3);
	border-radius: 7px;        /* CSS3草案 */  
	-webkit-border-radius: 7px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 7px;   /* Firefox用 */
}
h3 i {
	margin-right:15px;
}
h3 span {
	display:block;
	float:right;
	font-size:0.7em;
}
/*サブタイトル*/
h4 {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}
/*サブタイトル*/
h5 {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 3px;
}
/*コンテンツタイトル*/
.contTtl {
	text-align:center;
	font-size:2.2em;
	line-height:1.3em;
	font-weight:bold;
	margin-top:20px;
	margin-bottom:30px;
}
.contTtl span {
	display:block;
	font-size:0.45em;
	color:#999;
	margin-top:10px;
}

/*TABLET*/
@media only screen and (min-width : 600px){
}
/*PC*/
@media only screen and (min-width : 1025px){
/*タイトル*/
h3 {
	padding:40px;
	margin-bottom:30px;
	line-height:1em;
	font-size:1.6em;
}
/*コンテンツタイトル*/
.contTtl {
	text-align:center;
	font-size:2.2em;
	font-weight:bold;
	margin-top:0;
	margin-bottom:80px;
}
.contTtl span {
	display:block;
	font-size:0.45em;
	color:#999;
	margin-top:10px;
}
.pTtl h2 {
	font-size:2.4em;
}
}
/*IE*/
@media all and (-ms-high-contrast:none){
}


/*
共通-コンテンツ
*********************************************************/

.contents { padding:20px 0; }
.contents2 { padding:20px 0; }
/*TABLET*/
@media only screen and (min-width : 600px){
.contents { padding:40px 0; }
.contents2 { padding:30px 0; }
}
/*PC*/
@media only screen and (min-width : 1025px){
.contents { padding:80px 0; }
.contents2 { padding:60px 0; }
}

/*ボタン*/
/*<p class="btn"><a href="">一覧に戻る</a></p>*/
.btn a{
	display:block;
	max-width:800px;
	margin:auto;
	text-decoration:none;
	text-align:center;
	padding:20px 10px;
	font-weight:bold;
	color:#333;
	cursor:pointer;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	behavior: url(border-radius.htc); /* IE */
	border:#b9b8b8 solid 1px;
	background:-webkit-gradient(
	linear, left top, left bottom, 
	from(#dddddd),
	to(#f7f7f7));
	background:-webkit-linear-gradient(top, #f7f7f7 0% , #dddddd 100%);
	background:-moz-linear-gradient   (top, #f7f7f7 0% , #dddddd 100%);
	background:-o-linear-gradient     (top, #f7f7f7 0% , #dddddd 100%);
	background:-ms-linear-gradient(top, #f7f7f7, #dddddd); /* IE */
	background:linear-gradient        (top, #f7f7f7 0% , #dddddd 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
	GradientType=0,startColorstr='#FFf7f7f7', endColorstr='#FFdddddd');/*IE10用（色の頭にFFが必要）*/
	}
.btn a:hover,
.btn a:active{
	background:#dddddd;
	color:#c00;

	}

/*
subMenu
***********************************************************/
.subMenu{
	position:relative;
	z-index:1;
  display:flex;
  align-items: stretch;
	justify-content: space-between;
	font-size:0.8em;
	flex-wrap: wrap;
	border-top:#258ecf solid 2px;
	border-bottom:#258ecf solid 2px;
	padding:10px 5px;
	background-color:rgba(255,255,255,0.5);
	gap:5px;
	}
.subMenu p{
	 flex: 1 0 30%;
		}
.subMenu a{
  display: flex;
  align-items: center;
  justify-content: center;
	position:relative;
	height:100%;
	text-align:center;
	color:#333;
	text-decoration:none;
	font-weight:bold;
	border:#cccccc solid 1px;
	padding:10px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	behavior: url(border-radius.htc); /* IE */
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#ffffff),
		to(#f7f7f7));
	background:-webkit-linear-gradient(top, #ffffff 0% , #f7f7f7 100%);
	background:-moz-linear-gradient   (top, #ffffff 0% , #f7f7f7 100%);
	background:-o-linear-gradient     (top, #ffffff 0% , #f7f7f7 100%);
	background:-ms-linear-gradient(top, #ffffff, #f7f7f7); /* IE */
	background:linear-gradient        (top, #ffffff 0% , #f7f7f7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
		GradientType=0,startColorstr='#FFffffff', endColorstr='#FFf7f7f7');/*IE10用（色の頭にFFが必要）*/
	transition: 0.1s all ease 0s;
	}
	.subMenu a:hover,
	.subMenu a:active{
		background:#f7f7f7;
		color:#c00000;
		box-shadow:none;
		-moz-box-shadow:none;
		-o-box-shadow:none;
		-webkit-box-shadow:none;
		}
@media only screen and (min-width : 600px){
	.subMenu p{
		 flex: 1 0 20%;
			}
}
@media only screen and (min-width : 1025px){
	.subMenu{
		padding:20px 15px;
		gap:10px;
		font-size:1em;
		}
}

/*
ヘッダー
*********************************************************/
#header{
	clear:both;
	float:none;
	padding:0;
	padding:15px 100px 15px 15px;
	}
.logoSet {
	width:100%;
	float:none;
}
.logoSet h1,
.logoSet p {
	display:inline-block;
}
.subNavi {
	float:none;
}
.subNavi li {
	float:right;
}
.subNavi li:nth-child(1),
.subNavi li:nth-child(2) {
	display:none;
}
.subNavi li:nth-child(3) a {
	display:none;
}
.subNavi li:nth-child(4) a {
	display:none;
}
.subNavi li:nth-child(5) a {
	border-left:1px solid #ccc;
	border-right:1px solid #ccc;
	padding:5px 40px;
	margin-top:20px;
}
.subNavi li:nth-child(6) a {
	border-left:1px solid #ccc;
	padding:5px 40px;
	margin-top:20px;
}
.subNavi li a {
	display:block;
	text-align:center;
	text-decoration:none;
	font-size:0.9em;
	line-height:1em;
}
.logo img {
	max-height:33px;
	margin-top:10px;
}

/*TABLET*/
@media only screen and (min-width : 600px){
.logoSet {
	width:65%;
	float:left;
}
.logo img {
	max-height:50px;
	margin-top:10px;
}
.subNavi {
	float:right;
	width:35%;
	margin-top:0;
}
.subNavi li:nth-child(1),
.subNavi li:nth-child(2) {
	display:block;
}
}
@media only screen and (min-width : 768px){
.logoSet {
	width:50%;
}
.subNavi {
	width:50%;
}
}
/*PC*/
@media only screen and (min-width : 1025px){
#header{
	padding:3px 0;
	padding:30px 75px 30px 30px;
	}
.logo img{max-height:76px;}
.subNavi {
	margin-top:10px;
}
}
@media only screen and (min-width : 1070px){
.logoSet {
	width:50%;
}
.subNavi {
	width:50%;
}
.subNavi li:nth-child(1),
.subNavi li:nth-child(2) {
	display:none;
}
.subNavi li:nth-child(3) a {
	display:block;
	margin:0 20px 0 20px;
}
.subNavi li:nth-child(4) a {
	display:block;
	margin-left:0;
}
}
@media only screen and (min-width : 1430px){
.logoSet {
	width:40%;
}
.subNavi {
	width:60%;
}
.subNavi li:nth-child(3) a {
	margin:0 20px 0 30px;
}
.subNavi li:nth-child(4) a {
	margin-left:50px;
}
}

/*IE*/
@media all and (-ms-high-contrast:none){
}


/*
フッター
*********************************************************/
#footer{
	/*position: absolute; ←wrapperの一番下に表示 */
	bottom: 0;
	left:0;
	width:100%;
	clear:both;
	float:none;
	padding:40px 0;
	background:url(../img/common/footer_bg.jpg) center center no-repeat;
	background-size:cover;
	}
.ftBox {
	background:#fff;
	padding:20px;
}
.copyright{
	padding:0 0;
	font-size:0.6em;
	line-height:1;
	text-align:center;
	}
.fAdd {
	line-height:1.6em;
	float:none;
	width:100%;
	text-align:center;
	margin-bottom:20px;
}
.fAdd p:nth-child(2) {
	font-size:1em;
}
.fContact {
	float:none;
	width:100%;
	text-align:center;
}
.fContact p {
	display:block;
	margin:auto;
}
.fContact p:first-child {
	margin-right:0 !important;
	margin-bottom:10px;
}
.fContact p img {
	margin:auto;
}
.fContactSP {
	float:none;
	width:100%;
	text-align:center;
	position:fixed;
	bottom:0;
	left:0;
	padding:15px 0 10px;
	background:#fff;
	z-index:8;
}
.fContactSP p {
	display:inline-block;
	width:48%;
}
.fContactSP p img {
	margin:auto;
	width:100%;
}

.fAdd p:first-child {
	color:#ff950b;
	font-size:1.6em;
	font-weight:bold;
}
.fAdd span {
	display:inline-block;
	font-size:0.8em;
	margin-left:10px;
}

.fMenu {
	text-align:center;
}
.fMenu li {
	float:left;
	list-style:none;
	width:100%;
	margin-bottom:10px;
	border-left:1px solid #ddd;
}
.fMenu li:nth-child(1),
.fMenu li:nth-child(2),
.fMenu li:nth-child(3),
.fMenu li:nth-child(4) {
	border-right:1px solid #ddd;
}
.fMenu li:last-child {
	margin-bottom:0;
}
.fMenu li a {
	padding:0 20px;
	text-decoration:none;
	color:#222;
	font-weight:bold;
	text-align:center;
	font-size:1.2em;
}
.fMenu li a i {
	color:#ff950b;
	margin-right:10px;
}
.fMenu:after {display: block;content:'';clear: both;height: 0;visibility: hidden;}
/*TABLET*/
@media only screen and (min-width : 600px){
.fContact p {
	display:inline-block;
	margin:auto;
}
.fMenu li {
	float:left;
	list-style:none;
	width:50%;
}
.fMenu li:nth-child(2) {
	border-right:1px solid #ddd;
}
.fMenu li:nth-child(1),
.fMenu li:nth-child(3) {
	border-right:none;
}
.fMenu li a {
	font-size:1.1em;
}
}
@media only screen and (min-width : 710px){
.fContact p:first-child {
	margin-right:10px !important;
	margin-bottom:0;
}
.ftBox {
	padding:40px;
}
}
/*PC*/
@media only screen and (min-width : 1025px){
#footer{padding:40px 0;}
.copyright{
	padding:20px 0;
}
.fContact p:first-child {
	margin-right:10px !important;
	margin-bottom:0;
}
.fMenu li {
	float:left;
	list-style:none;
	width:25%;
}
.fMenu li:nth-child(2) {
	border-right:0;
}
.fMenu li a {
	font-size:0.9em;
}
}
@media only screen and (min-width : 1169px){
.fAdd {
	float:left;
	width:45%;
	text-align:left;
}
.fAdd p:nth-child(2) {
	font-size:0.9em;
}
.fContact {
	float:right;
	width:55%;
}
.fContact p:first-child {
	margin-right:10px !important;
	margin-bottom:0;
}
}
/*IE*/
@media all and (-ms-high-contrast:none){
}


/*********************************************************
トップページ
*/

.btn3miniSet {
	display:block;
	background: -moz-linear-gradient(top, #222222, #000000);
	background: -webkit-linear-gradient(top, #222222, #000000);
	background: linear-gradient(to bottom, #222222, #000000);
	padding:15px 0;
	line-height:1em;
	color:#fff;
	font-size:1em;
	font-weight:bold;
	/*シャドウ（順序 横・下・ぼかし・広がり・色）*********************/ 
	box-shadow: 0 0 3px 0px rgba(0,0,0,0.3); 
	-moz-box-shadow: 0 0 3px 0px rgba(0,0,0,0.3); 
	-o-box-shadow: 0 0 3px 0px rgba(0,0,0,0.3); 
	-webkit-box-shadow: 0 0 3px 0px rgba(0,0,0,0.3);
	border-radius: 7px;        /* CSS3草案 */  
	-webkit-border-radius: 7px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 7px;   /* Firefox用 */
	text-align:center;
	text-decoration:none;
}
.btn3miniSet i {
	margin-right:5px;
}
.btnGreen {
	background: -moz-linear-gradient(top, #60b31c, #459008);
	background: -webkit-linear-gradient(top, #60b31c, #459008);
	background: linear-gradient(to bottom, #60b31c, #459008);
}
.btnBlue {
	background: -moz-linear-gradient(top, #59a3d7, #1a70ac);
	background: -webkit-linear-gradient(top, #59a3d7, #1a70ac);
	background: linear-gradient(to bottom, #59a3d7, #1a70ac);
}
.btnOrange {
	background: -moz-linear-gradient(top, #fe9610, #cd7300);
	background: -webkit-linear-gradient(top, #fe9610, #cd7300);
	background: linear-gradient(to bottom, #fe9610, #cd7300);
}
.btnBlue2 {
	background: -moz-linear-gradient(top, #9999cc, #0000cc);
	background: -webkit-linear-gradient(top, #9999cc, #0000cc);
	background: linear-gradient(to bottom, #9999cc, #0000cc);
}
/*PC*/
@media only screen and (min-width : 1025px){
.btn3miniSet {
	padding:25px 0;
	font-size:1.2em;
}
.btn3miniSet i {
	margin-right:10px;
}
}

.btnMini {
	display:block;
	background: -moz-linear-gradient(top, #222222, #000000);
	background: -webkit-linear-gradient(top, #222222, #000000);
	background: linear-gradient(to bottom, #222222, #000000);
	padding:15px 0;
	line-height:1em;
	color:#fff;
	font-size:1em;
	font-weight:bold;
	/*シャドウ（順序 横・下・ぼかし・広がり・色）*********************/ 
	box-shadow: 0 0 3px 0px rgba(0,0,0,0.3); 
	-moz-box-shadow: 0 0 3px 0px rgba(0,0,0,0.3); 
	-o-box-shadow: 0 0 3px 0px rgba(0,0,0,0.3); 
	-webkit-box-shadow: 0 0 3px 0px rgba(0,0,0,0.3);
	border-radius: 35px;        /* CSS3草案 */  
	-webkit-border-radius: 35px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 35px;   /* Firefox用 */
	text-align:center;
	text-decoration:none;
}
.btnMini2 {
	display:block;
	background: -moz-linear-gradient(top, #222222, #000000);
	background: -webkit-linear-gradient(top, #222222, #000000);
	background: linear-gradient(to bottom, #222222, #000000);
	padding:10px 20px;
	line-height:1em;
	color:#fff;
	font-size:0.9em;
	font-weight:bold;
	/*シャドウ（順序 横・下・ぼかし・広がり・色）*********************/ 
	box-shadow: 0 0 3px 0px rgba(0,0,0,0.3); 
	-moz-box-shadow: 0 0 3px 0px rgba(0,0,0,0.3); 
	-o-box-shadow: 0 0 3px 0px rgba(0,0,0,0.3); 
	-webkit-box-shadow: 0 0 3px 0px rgba(0,0,0,0.3);
	border-radius: 35px;        /* CSS3草案 */  
	-webkit-border-radius: 35px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 35px;   /* Firefox用 */
	text-align:center;
	text-decoration:none;
}

.btn3miniSet i {
	margin-right:5px;
}
/*PC*/
@media only screen and (min-width : 1025px){
.btnMini {
	padding:10px 0;
	font-size:1em;
}
.btnMini i {
	margin-right:10px;
}
}

/* メインイメージ ******/
.mainImg {
	background:url(../img/common/mainimg1.jpg) center center no-repeat;
	background-size:cover;
	padding:130px 30px;
	position:relative;
}
.mainImg .column3,
.mainImg2nd .column3 {
	display:none;
}
.mainImg img,
.mainImg2nd img {
	margin:auto;
}
.mainImg2nd {
	background:url(../img/common/mainimg1.jpg) center center no-repeat;
	background-size:cover;
	padding:130px 30px;
	position:relative;
}
/*PC*/
@media only screen and (min-width : 1025px){
.mainImg {
	background:url(../img/common/mainimg1.jpg) center center no-repeat;
	background-size:cover;
	padding:280px 0;
}
.mainImg .column3,
.mainImg2nd .column3 {
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:100%;
}
.mainImg .column3 li,
.mainImg2nd .column3 li {
	width:33.333%;
	margin-right:0;
	margin-bottom:0;
}
.mainImg .column3 li a,
.mainImg2nd .column3 li a {
	display:block;
	padding:30px 0;
	line-height:1em;
	color:#fff;
	text-align:center;
	text-decoration:none;
	font-size:1.3em;
	font-weight:bold;
	background: -moz-linear-gradient(left, rgba(0,0,0,0.5),rgba(0,0,0,0.9));
  background: -webkit-linear-gradient(left, rgba(0,0,0,0.5),rgba(0,0,0,0.9));
  background: linear-gradient(to right, rgba(0,0,0,0.5),rgba(0,0,0,0.9));
}
.mainImg .column3 li a:hover,
.mainImg .column3 li a:active,
.mainImg2nd .column3 li a:hover,
.mainImg2nd .column3 li a:active {
	background:rgba(0,0,0,0.7); /* 黒 */
}
}

/* メイン下背景グリーン ******/
.subCopy {
	background:#2e5112;
	padding:30px 0;
	color:#fff;
	font-size:1em;
	line-height:1.6em;
}
/*PC*/
@media only screen and (min-width : 1025px){
.subCopy {
	padding:60px 0;
	font-size:1.1em;
	line-height:1.8em;
}
}

.bg2 {
	background:url(../img/bg2.jpg) top center no-repeat;
	background-size:cover;
}
.bg3 {
	background:url(../img/bg3.jpg) top left repeat;
}
.bg4 {
	background:url(../img/bg4.jpg) top left repeat;
}

/* 倶楽部紹介 ******/
.clubRayout {
}
.clubRayout .leftBox {
	width:100%;
	float:none;
	margin-right:0;
}
.clubRayout .leftBox p {
	margin-bottom:10px;
}
.clubRayout .leftBox p img {
	margin:auto;
}
.clubRayout .rightBox {
	width:100%;
	float:none;
}
.clubRayout .rightBox p img {
	margin:auto;
}
.clubRayout .rightBox p.clubLogo {
	margin-bottom:10px;
}
.clubRayout .rightBox p.txtReadBold {
	font-size:1.1em;
	font-weight:bold;
	padding-bottom:10px;
	margin-bottom:10px;
	border-bottom:3px solid #ddd;
	line-height:1.5em;
}
.clubRayout .rightBox p.txtReadNomal {
	margin-bottom:10px;
	line-height:1.5em;
}
/*PC*/
@media only screen and (min-width : 1025px){
.clubRayout .leftBox {
	width:49%;
	float:left;
	margin-right:2%;
}
.clubRayout .leftBox p {
	margin-bottom:30px;
}
.clubRayout .rightBox {
	width:49%;
	float:right;
}
.clubRayout .rightBox p.clubLogo {
	margin-bottom:20px;
}
.clubRayout .rightBox p.txtReadBold {
	padding-bottom:20px;
	margin-bottom:20px;
}
.clubRayout .rightBox p.txtReadNomal {
	margin-bottom:20px;
}
}

/* 売買速報 ******/
.tradeImg {
	position:relative;
	margin-bottom:10px;
}
.tradeImg span {
	display:block;
	position:absolute;
	top:0;
	left:0;
	background:#222;
	color:#fff;
	text-align:center;
	font-weight:bold;
	line-height:1em;
	padding:10px 20px;
}
span.icoGreen {
	background:#32bd27;
}
span.icoOrange {
	background:#ff9609;
}
.tradeDl {
	margin-bottom:15px;
}
.tradeDt {
	font-weight:bold;
}
.tradeDd {
	font-size:0.9em;
}

/* 特選売買情報 ******/
.spTrade dl {
	float:none;
	width:100%;
	margin-right:0;
	margin-bottom:30px;
}
.spTrade dl:nth-child(2) {
	float:none;
	width:100%;
	margin-right:0;
}
.spTrade .tableNomal {
	text-align:center;
}
.spTrade .tableNomal th {
	background:#f7f7f7;
}
.spTrade dt {
	line-height:1em;
	padding:20px 0;
	margin-bottom:15px;
	text-align:center;
	color:#fff;
	font-weight:bold;
	font-size:1.2em;
}
.spTrade dt.sell {
	background:#32bd27;
}
.spTrade dt.buy {
	background:#ff9609;
}
.spTradeLink {
	font-size:0.9em;
}
.spTradeLink span a {
	display:block;
	float:right;
	color:#ff9609;
}
.spTradeLink span a i {
	margin-right:10px;
}
/*PC*/
@media only screen and (min-width : 1025px){
.spTrade dl {
	float:left;
	width:49%;
	margin-right:2%;
}
.spTrade dl:nth-child(2) {
	float:left;
	width:49%;
	margin-right:0;
}
}


/* 会員権相場情報 ******/
.areaMap {
	background:url(../img/areamap.jpg) center center no-repeat;
	background-size:cover;
	color:#fff;
}
.areaMap > p {
	display: flex;
	align-items: center;
	font-size:1.6em;
	font-weight:bold;
	margin-bottom:30px;
}
.areaMap > p:after {
	border-top: 1px solid;
	content: "";
	flex-grow: 1;
}
.areaMap > p:after {
margin-left: 1rem;
}
.areaList li {
}
.areaList li dt {
	border:1px solid #fff;
	line-height:1em;
	padding:10px 0;
	margin-bottom:15px;
	text-align:center;
}
.areaList li dd {
	text-align:center;
	line-height:2em;
}
.areaList > *{
	float:left;
	list-style:none;
	width:23.5%;
	margin-right:2%;
	margin-bottom:20px;
	}
.areaList > *:nth-child(4n){margin-right:0;}

.newMember{}
.newMember > li p {
	margin-bottom:15px;
}
.newMember > li dl {
	margin-bottom:15px;
}
.newMember > li dt {
	font-weight:bold;
	margin-bottom:5px;
}
.newMember > li dd {
	font-size:0.9em;
}
.newMember .btn3miniSet {
	font-size:0.9em;
	padding:15px 0;
}
.newMember > *{
	float:none;
	list-style:none;
	width:100%;
	margin-right:0;
	margin-bottom:10px;
	}
.newMember:after {display: block;content:'';clear: both;height: 0;visibility: hidden;}

@media only screen and (min-width : 600px){
.areaList > *{
	width:12.57%;
	}
.areaList > *:nth-child(4n){margin-right:2%;}
.areaList > *:nth-child(7n){margin-right:0;}

.newMember > *{
	float:left;
	list-style:none;
	width:32%;
	margin-right:2%;
	margin-bottom:20px;
	}
.newMember > *:nth-child(3n){margin-right:0 !important;}
}


.news {
	margin-bottom:15px;
}
.news a {
	text-decoration: none;
}

.news dt {
	font-weight:bold;
	font-size:1.8em;
	line-height:1.3em;
	margin-bottom:30px;
}
.news dt span {
	display:block;
	color:#ff960c;
	font-size:0.7em;
}
.news dd {
	height:230px;
	overflow:hidden;
	overflow-y:scroll;
	width:100%;
}
.news dd::-webkit-scrollbar {
	width: 5px;
}
.news dd::-webkit-scrollbar-track {
	background-color:#cccccc;
	border-radius: 20px;
}
.news dd::-webkit-scrollbar-thumb {
	background-color:#f5f5f5;
	border-radius: 20px;
}
.news dd p {
	padding:15px 0;
	border-top:1px solid #ddd;
}
.news dd p span {
	display:inline-block;
	font-weight:bold;
	margin-right:15px;
}
.news dd p em {
	font-style:normal;
	font-size:0.8em;
	text-align:center;
	color:#fff;
	padding:3px 10px;
	margin-left:15px;
	line-height:1em;
	background:#ff9609;
	border-radius: 5px;        /* CSS3草案 */  
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 5px;   /* Firefox用 */
}

.newsDetail{
	padding:10px;
	min-height:200px;
	margin-bottom:40px;
	}



.fBn4 .column2-4 > *:nth-child(2) {
	margin-bottom:2%;
}
@media only screen and (min-width : 564px){
.fBn4 {
	padding-bottom:30px;
}
}
/*PC*/
@media only screen and (min-width : 1025px){
.fBn4 {
	padding-bottom:40px;
}
.fBn4 .column2-4 > * {
	margin-bottom:0;
}
}



/*********************************************************
2nd
*/

/* 各CCページ共通 ******/
.courseInfo {
	line-height:1.8em;
	font-size:1.1em;
}
.courseInfo span {
	display:block;
	color:#fe970c;
	font-size:1.5em;
	font-weight:bold;
	margin-bottom:20px;
}
.whiteBox {
	background:#fff;
	padding:30px;
	/*シャドウ（順序 横・下・ぼかし・広がり・色）*********************/ 
	box-shadow: 0 0 2px 0px rgba(0,0,0,0.2); 
	-moz-box-shadow: 0 0 2px 0px rgba(0,0,0,0.2); 
	-o-box-shadow: 0 0 2px 0px rgba(0,0,0,0.2); 
	-webkit-box-shadow: 0 0 2px 0px rgba(0,0,0,0.2);
}
.whiteBox dt {
	color:#fe970c;
	font-size:1.5em;
	font-weight:bold;
	margin-bottom:20px;
	line-height:1.4em;
}
.secondPage .contTtl span  {
	color:#fe970c;
}
.accessMap iframe {
	height:400px;
}

/* 津CCページ ******/
.nextCom img {
	margin-bottom:20px;
}
.table_market{}


/* 片山津GC *********/
.friendship{}

.friendship > *{
	background:#fff;
	padding:20px;
	box-shadow: 0 0 3px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 0 3px 0px rgba(0,0,0,0.3);
	-o-box-shadow: 0 0 3px 0px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0 0 3px 0px rgba(0,0,0,0.3);
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	}

.friendship > * > *{margin-bottom:10px;}
.friendship > * > *:last-child{ margin-bottom:0 !important;}

.friendship_name img{margin:auto; max-height:40px;}




/*TABLET*/
@media only screen and (min-width : 600px){
	.friendship > *{
		padding:30px;
	}
}
/*PC*/
@media only screen and (min-width : 1025px){
	.accessMap iframe {
		height:600px;
	}
	.nextCom img {
		margin-bottom:0;
	}
	.friendship > *{
		padding:40px;
	}
	.friendship > * > *{margin-bottom:20px;}

}

/*IE*/
@media all and (-ms-high-contrast:none){
}

.blink {
	-webkit-animation: blink 1s ease infinite;
	animation: blink 1s ease infinite;
}
@-webkit-keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*友好提携倶楽部
**************************/
.alignmentWrap {
	position:relative;
	height:100%;
	padding:10px;
	border:1px solid #ddd;
	border-radius: 5px;        /* CSS3草案 */  
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 5px;   /* Firefox用 */
}
.alignmentWrap dt {
	padding-bottom:5px;
	margin-bottom:10px;
	font-weight:bold;
	border-bottom:1px dashed #ddd;
}
.alignmentWrap dd:last-child {
	display:flex;
  flex-wrap: wrap;
	align-items:center;
	justify-content:space-between
}
.alignmentWrap dd:last-child p {
	display:block;
	text-align:center;
	color:#fff;
	line-height:1em;
	font-size:0.8em;
	background:#9fca46;
	border-radius: 7px;        /* CSS3草案 */  
	-webkit-border-radius: 7px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 7px;   /* Firefox用 */
	padding:5px 10px;
}
.alignmentWrap dd:last-child span a {
	display:block;
	text-align:center;
	border:1px solid #ddd;
	line-height:1em;
	font-size:1.0em;
	border-radius: 7px;        /* CSS3草案 */  
	-webkit-border-radius: 7px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 7px;   /* Firefox用 */
	padding:5px 10px;
	text-decoration:none;
}
.alignmentWrap dd p {
}