@charset "utf-8";
/**
 * style
 *
 * 1. import
 * 2. html, body
 * 3. HTMLtag, siteCommonClass
 * 4. Layout
 * 5. EachPageStyle
 *
 */
/**
 * 1. import
 */
@import "import/reset.css";
@import "import/util.css";
@import "../font/flaticon.css";

/**
 * 2. html, body
 */
	body {
		background-color: #fff;
		background-image: url(../imgs/space.gif);
		background-repeat: repeat-x;
		background-position: center top;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
		-webkit-text-size-adjust: 100%;
	}
	.page {
		color: #000;
		font-size: 14px;
		line-height: 1.5;
		letter-spacing: 0.1em;

		/* serif */
		font-family: Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
		/* sans serif */
		/*font-family: Avenir , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;*/
	}
	.wrap {
		max-width: 960px;
		margin-left: auto;
		margin-right: auto;
	}
@media only screen and (max-width: 960px) {
	.wrap {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		padding-left: 10px;
		padding-right: 10px;
	}
}
@media only screen and (max-width:640px) {
	.page {
		font-size: 12px;
	}
}

@media screen and (min-width: 667px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 667px) {
  .pc {
    display: none !important;
  }
}


/**
 * 3. HTMLtag, siteCommonClass
 */
/* anchor */
	a {
		color: #000;
		text-decoration: none;
	}
	a:visited {}
	a:hover {
		color: #000;
		text-decoration: none;
	}
	a:active {}

/* img */
	img {
		vertical-align: bottom;
		max-width: 100%;
	}
@media only screen and (max-width: 960px) {
	img {
		max-width: 100%;
		height: auto;
	}
}
/* heading */
	.siteTitle {
		/*dont use <h1> selector*/
	}
	.contentTitle {
		position: relative;
		height: 300px;
	}
	.contentTitle > .wrap {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 3;
		max-width: none;
	}
	.contentTitle_image {
		overflow: hidden;
		position: relative;
		height: 100%;
	}
	.contentTitle_image > img {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		min-width: 1400px;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	.contentTitle_headline {
		position: absolute;
		top: 50%;
		right: 0;
		left: 0;
		color: #fff;
		font-size: 30px;
		font-weight: normal;
		letter-spacing: .2em;
		text-align: center;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.contentTitle .caption {
		position: absolute;
		right: 5px;
		bottom: -17px;
		color: #999;
		font-size: 10px;
	}
	.mainCopy {
		text-align: center;
		font-size: 40px;
		font-weight: normal;
		letter-spacing: 0.2em;
		margin-bottom: 60px;
	}
@media only screen and (max-width:960px) {
	.contentTitle .caption {
		right: 20px;
	}
	.mainCopy {
		font-size: 28px;
		margin-bottom: 26px;
	}
}
@media only screen and (max-width:640px) {
	.contentTitle {
		height: 100px;
	}
	.contentTitle_image > img {
		min-width: 700px;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	.contentTitle_headline {
		font-size: 20px;
		letter-spacing: 0.1em;
	}
	.mainCopy {
		font-size: 20px;
	}
}
/* cap */
	.cap,
	.caption {
		background: none;
		color: #999;
		font-size: 10.5px;
		line-height: 1.5;
		font-family: Avenir , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	}
	.cap {
		padding-top: 5px;
		letter-spacing: 0;
	}
@media only screen and (max-width:960px) {
	.cap,
	.caption {
		font-size: 10px;
	}
}

/* altText */
	.altText {
		display: none;
	}
@media only screen and (max-width:640px) {
	.toText {
		display: none;
	}
	.altText {
		display: inline;
	}
}

/**
 * 4. Layout
 */

/* ===================================
HEADER
=================================== */
	#gHeader {
		/*position: relative;*/ /* PC時　header固定ナシ */
		position: fixed; /* PC時　header固定アリ */
		top: 0;
		left: 0;
		width: 100%;
		z-index: 9999;
	}
	.headerInner {
		background-color: #000;
		padding-top: 2px;
		padding-bottom: 4px;
		color: #fff;
	}
	.headerInner .wrap {
		position: relative;
	}
@media only screen and (max-width:960px) {
	.headerInner {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}
@media only screen and (max-width:640px) {
	#gHeader {
		position: relative;
	}
	.headerInner {
		padding-bottom: 0;
	}
}
/* hdrLogo */
	.hdrLogo {
	}
	.shldrTxt {
		font-size: 10px;
		margin-bottom: 12px;
		font-family: Avenir , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	}
@media only screen and (max-width:960px) {
	.hdrLogo {
		float: left;
	}
	.shldrTxt {
		display: none;
	}
}
@media only screen and (max-width:640px) {
	.hdrLogo {
		float: none;
		text-align: center;
		margin-bottom: 20px;
	}
}
/* pNav */
	#pNav {
		position: absolute;
		top: 9px;
		right: 0px;
		-webkit-transition: .5s;
		transition: .5s;
	}
	#pNav li {
		display: inline-block;
		vertical-align: middle;
		margin-left: 15px;
		padding-bottom: 5px;
		font-size: 12px;
	}
	#pNav li a {
		display: inline-block;
		position: relative;
		padding-left: 12px;
		color: #fff;
		vertical-align: middle;
		line-height: 1;
		font-family: Avenir , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	}
	#pNav li a:before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		border-left: 6px solid #999;
		border-top: 3px solid transparent;
		border-bottom: 3px solid transparent;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);*/
	}
	#pNav li a:hover {
		text-decoration: underline;
	}
	#pNav li.req,
	#pNav li.res {
		padding-bottom: 0;
	}
	#pNav li.res {
		margin-left: 2px;
	}
	#pNav li.req a,
	#pNav li.res a {
		display: block;
		position: relative;
		-webkit-transition: all .3s ease;
		   -moz-transition: all .3s ease;
		    -ms-transition: all .3s ease;
		     -o-transition: all .3s ease;
		        transition: all .3s ease;
	}
	#pNav li.req a:before,#pNav li.res a:before{
		content: none;
	}
	#pNav li.req a:after,#pNav li.res a:after {
		content: "";
		position: absolute;
		top: 3px;
		right: -3px;
		bottom: -3px;
		left: 15px;
		border: 1px solid #908f69;
		pointer-events: none;
		-webkit-transition: all .3s ease;
		   -moz-transition: all .3s ease;
		    -ms-transition: all .3s ease;
		     -o-transition: all .3s ease;
		        transition: all .3s ease;
	}
	#pNav li.res a:after{
		border: 1px solid #9c5656;
	}
	#pNav li.req a:hover,
	#pNav li.res a:hover {
		text-decoration: none;
		opacity: 0.9;
	}
	#pNav li.req a:hover:after,#pNav li.res a:hover:after {
		top: 0px;
		right: 0px;
		bottom: 0px;
		left: 12px;
		-webkit-transition: all .5s ease;
		   -moz-transition: all .5s ease;
		    -ms-transition: all .5s ease;
		     -o-transition: all .5s ease;
		        transition: all .5s ease;
						opacity: 0.4;
	}

@media only screen and (max-width:1080px) {
	#pNav {
		right: 0;
	}
}
@media only screen and (max-width:960px) {
	#pNav {
		position: static;
		float: right;
	}
	#pNav li {
		font-size: 10px;
		margin-left: 10px;
	}
	#pNav li.req a,
	#pNav li.res a {
		font-size: 16px;
		line-height: 30px;
		width: 130px;
	}
}
@media only screen and (max-width:640px) {
	#pNav {
		display: none;
	}
}

/* sNav */
	#sNav {
		display: none;
	}
    .spHeaderFixed #sNav {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
    }
@media only screen and (max-width:640px) {
	#sNav {
		display: block;
	}
	#sNav ul {
		display: flex;
		justify-content: center;
		border-top: 1px solid #eee;
		border-bottom: 1px solid #eee;
	}
	#sNav li {
		/*width: 20%;*/ /* btn 5つ */
		width: 25%; /* btn 4つ */
		text-align: center;
		font-size: 10px;
		line-height: 1.8;
		letter-spacing: 0;
		border-right: 1px solid #eee;
		box-sizing: border-box;
	}
	#sNav li:first-child{
		border-left: 1px solid #eee;
	}
	#sNav li a {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		display: block;
		width: 100%;
		height: 100%;
		padding: 3%;
		background-color: #000;
		color: #fff;
	}
	#sNav li [class^="flaticon-"] {
		font-size: 25px;
	}
	#sNav li.menu .flaticon-cancel {
		display: none;
	}
	#sNav li.menu.on .flaticon-cancel {
		display: inline;
	}
	#sNav li.menu.on .flaticon-menu {
		display: none;
	}
}
/* ===================================
gNav
=================================== */
	#gNav {
		background-color: #000;
	}
	#gNav ul {
		display: flex;
		justify-content: center;
	}
	#gNav li{
		box-sizing: border-box;}
	#gNav li.sp {
		display: none;
	}
	#gNav li a {
		display: block;
		padding: 12px 10px;
		color: #fff;
		font-size: 12.5px;
		position: relative;
		/*-webkit-transition: all .5s ease;
		   -moz-transition: all .5s ease;
		    -ms-transition: all .5s ease;
		     -o-transition: all .5s ease;
		        transition: all .5s ease;*/
						box-sizing: border-box;
	}
	#gNav li a:hover,
	#gNav li.on a {
		color: #b0ac62;
		border-bottom:3px solid #979344;
		box-sizing: border-box;
	}
	#gNav li.off a {
		pointer-events: none;
		opacity: 0.5;
	}
	#gNav li .new {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		color: #fff;
		background-color: #ae142f;
		padding: 2px 4px 2px;
		line-height: 1;
		font-size: 10px;
	}
	#gNav li a.none{
		cursor: default;
		color: #898989;
	}
	#gNav li a.none:hover{
		color: #898989;
		border-bottom: none;
	}
@media only screen and (max-width:960px) {
	#gNav li a {
		padding: 12px 8px;
		font-size: 13px;
		letter-spacing: 0;
	}
}
@media only screen and (max-width:640px) {
	#gNav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		z-index: 9999;
		display: none;
	}
	.spHeaderFixed #gNav {
		position: fixed;
	}
	#gNav .wrap {
		padding-left: 0;
		padding-right: 0;
	}
	#gNav ul {
		display: block;
		font-size: 0;
		letter-spacing: -0.4em;
	}
	#gNav ul li {
		display: inline-block;
		width: 50%;
		text-align: center;
		font-size: 10px;
	}
	#gNav li.sp {
		display: inline-block;
	}
	#gNav ul li a {
		display: block;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		padding: 10%;
		letter-spacing: -0.115em;
	}
}
/* ===================================
CONTAINER
=================================== */
	#container {
		padding-top: 113px;
	}
	#mainContent {
		margin-bottom: 0;
		padding-bottom: 20px;
	}
@media only screen and (max-width:960px) {
	#mainContent {
		margin-bottom: 0px;
		padding-bottom: 20px:
	}
}
/* ===================================
breadcrumb
=================================== */
	.breadcrumb {
		padding-top: 5px;
		margin-bottom: 35px;
	}
	.breadcrumb ul {
		font-size: 0;
		letter-spacing: -0.4em;
	}
	.breadcrumb li {
		display: inline-block;
		color: #aaa;
		font-size: 12px;
		font-family: Avenir , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
		letter-spacing: 0.1em;
		margin-right: 7px;
	}
	.breadcrumb li a {
		padding-right: 4px;
		color: #aaa;
	}
	.breadcrumb li a:hover {
		text-decoration: underline;
	}
@media only screen and (max-width:960px) {
	.breadcrumb {
		margin-bottom: 28px;
	}
	.breadcrumb li {
		font-size: 10px;
	}
}
@media only screen and (max-width: 768px) {
	.breadcrumb {
		padding-top: 35px;
	}
}
/* ===================================
cvArea
=================================== */
	.cvArea {
		padding-top: 80px;
		padding-bottom: 80px;
		background-color: #000;
		background: url(../imgs/foot-bg@2x.jpg) no-repeat bottom ;
		background-size: cover;
	}
	.cvInner {
		display: flex;
		justify-content: center;
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
	.cvArea .cv {
		width: 48.95833333%;
		 margin-left: 2.08333333%;
		text-align: center;
		/*padding-top: 16px;
		padding-bottom: 15px;*/
	}

	.cvArea .cv:first-child {
		margin-left: 0;
	}
	.cvArea .cv a {
		display: block;
		position: relative;
		-webkit-transition: all .5s ease;
		   -moz-transition: all .5s ease;
		    -ms-transition: all .5s ease;
		     -o-transition: all .5s ease;
		        transition: all .5s ease;
	}
	.cvArea .cv a:hover {
		opacity: 0.5;
	}


	.cvArea .txt {
		color: #fff;
		font-size: 16px;
		margin-bottom: 12px;
		text-align: center;
	}
	.cvArea .cv .txt02 {
		color: #fff;
		font-size: 18px;
	}
	.cvArea .cvTxt,.cvArea .rTxt {
		color: #fff;
		font-size: 16px;
		margin-bottom: 40px;
		text-align:center;
	}
	.cvArea .rTxt{
		margin-top: 10px;
		margin-bottom: 0;
	}
	@media only screen and (max-width: 667px) {
		.cvArea .cv .cvTxt {
			font-size: 14px;
			margin-bottom: 15px;
		}
	}
	.cvArea .cv .btn {

		position: relative;
		max-width: 359px;
		margin: 0px auto 0px;
	}
	.cvArea .cv .btn a {
		display: block;
		position: relative;
		-webkit-transition: all .3s ease;
		   -moz-transition: all .3s ease;
		    -ms-transition: all .3s ease;
		     -o-transition: all .3s ease;
		        transition: all .3s ease;
	}
	.cvArea .cv .btn a:after {
		content: "";
		position: absolute;
		top: 4px;
		right: -4px;
		bottom: -4px;
		left: 4px;
		border: 1px solid #908f69;
		pointer-events: none;
		-webkit-transition: all .3s ease;
		   -moz-transition: all .3s ease;
		    -ms-transition: all .3s ease;
		     -o-transition: all .3s ease;
		        transition: all .3s ease;
	}
	.cvArea .cv.res .btn a:after{
		border: 1px solid #9c5656
	}
	.cvArea .cv .btn a:hover,
	.cvArea .cv .btn a:hover {
		text-decoration: none;
		opacity: 0.9;
	}
	.cvArea .cv .btn a:hover:after {
		top: 0px;
		right: 0px;
		bottom: 0px;
		left: 0px;
		-webkit-transition: all .5s ease;
		   -moz-transition: all .5s ease;
		    -ms-transition: all .5s ease;
		     -o-transition: all .5s ease;
		        transition: all .5s ease;
						opacity: 0.4;
	}
	/*
	.cvArea .cv .btn a:before {
		content: "";
		position: absolute;
		top: 1px;
		right: 1px;
		bottom: 1px;
		left: 1px;
		border: 1px solid #756b43;
		pointer-events: none;
		-webkit-transform: none;
		transform: none;
	}
	.cvArea .cv .btn span {
		color: #d1c9b5;
		font-size: 13px;
		letter-spacing: .24em;
		vertical-align: 2px;
	}*/
@media only screen and (max-width:960px) {
	.cvArea {
		padding-top: 45px;
		padding-bottom: 40px;
	}
	.cvArea .cv .txt {
		font-size: 14px;
	}
	.cvArea .cv .btn {
		line-height: 50px;
		font-size: 18px;
	}
}
@media only screen and (max-width:640px) {
	.cvArea {
		 flex-direction: column;
		 padding-top: 25px;
 		padding-bottom: 10px;
	}
	.cvInner{
		display: block;
	}
	.cvArea .cv {
		width: 100%;
		margin-left: 0;
	}
	.cvArea .cv.res,.cvArea .cv.req{
		width: 100%;
	}
	.cvArea .txt {
		margin-bottom: 20px;
	}
	.cvArea .txt {
		font-size: 14px;
		margin-bottom: 15px;
	}
	.cvArea .cv:first-child {
		margin-bottom: 20px;
	}
	.cvArea .cv .btn{
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}
	.cvArea .txtNerima {
		margin-bottom: 20px;
	}
	.cvArea .rTxt{
		margin-top: 10px;
		margin-bottom: 0;
		font-size: 12px;
	}
	.cvArea .cvTxt{
		color: #fff;
		font-size: 13px;
		margin-bottom: 20px;
		text-align:center;
	}

}

.captionArea {
	padding-top: 25px;
	padding-bottom: 25px;
	background-color: #0d0909;
	color: #999;
	font-size: 10px;
	letter-spacing: .08em;
		font-family: Avenir , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}

/* ===================================
fNav
=================================== */
	#fNav {
		padding-top: 10px;
		padding-bottom: 10px;
		background-color: #3d3d2e;
		border-top: 1px solid #4d4d4d;
	}
	#fNav ul {
		text-align: center;
		font-size: 0;
		letter-spacing: -0.4em;
	}
	#fNav li {
		display: inline-block;
		padding-left: 10px;
		border-left: 1px solid #999;
		margin-left: 10px;
		font-family: Avenir , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
		line-height: 1.0;
	}
	#fNav li:first-child {
		margin-left: 0;
		border-left: none;
		padding-left: 0;
	}
	#fNav a,
	#fNav span {
		color: #FFF;
		font-size: 10px;
		letter-spacing: -0.1em;
	}
	#fNav a.none{
		color: #666;
	}
	#fNav a:hover,
	#fNav li.on a {
		color: #a39266;
		text-decoration: underline;
	}
	#fNav li.on a {
		pointer-events: none;
	}
	#fNav li.off {
		opacity: 0.5;
		pointer-events: none;
	}
	#fNav a.none:hover{
		color: #666;
		cursor: default;
		text-decoration: none;
	}
	#fNav .space {
		display: none;
	}
	#fNav li .new {
		display: none;
	}

@media only screen and (max-width:640px) {
	#fNav {
		padding-top: 0;
		padding-bottom: 0;
		border-top: 0;
	}
	#fNav .wrap {
		padding-left: 0;
		padding-right: 0;
	}
	#fNav ul {
		text-align: left;
		border-top: 1px solid #4d4d4d;
		border-left: 1px solid #4d4d4d;
	}
	#fNav li {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		border-bottom: 1px solid #4d4d4d;
		border-right: 1px solid #4d4d4d;
		border-left: none;
		padding: 0;
		margin: 0;
		width: 50%;
		text-align: center;
		position: relative;
	}
	#fNav a,
	#fNav span {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		display: block;
		width: 100%;
		height: 100%;
		padding: 8%;
		font-size: 12px;
	}
	#fNav .space {
		display: inline-block;
	}
	#fNav li .new {
		width: auto;
		height: auto;
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		color: #fff;
		background-color: #ae142f;
		padding: 1px 3px 1px;
		line-height: 1;
		font-size: 9px;
	}
}
/* ===================================
contactArea
=================================== */
	#contactArea {
		padding: 40px 20px 20px;
		background-color: #000;
		color: #fff;
	}
	.contactInner {
		margin-bottom: 40px;
		display: flex;
		justify-content: center;
	}
@media only screen and (max-width:960px) {
	#contactArea {
		padding-top: 14px;
		padding-bottom: 16px;
	}
	.contactInner {
		margin-bottom: 20px;
		 flex-direction: column;
	}
}
/* contact */
	.contact {
		padding-right: 47px;
		border-right: 1px solid rgba(178, 178, 178, .4);
		margin-right: 40px;
	}
	.contact br.sp {
		display: none;
	}
	.contact .txt {
		font-size: 16px;
		letter-spacing: -0.05em;
	}
	.contact .tell {
		line-height: 1;
		margin-bottom: 8px;
	}
	.contact .tell a {
		display: block;
		color: #fff;
		font-size: 50px;
		pointer-events: none;
		letter-spacing: 0;
	}
	.contact .tell a:before {
		content: "";
		display: inline-block;
		width: 52px;
		height: 30px;
		background: transparent url(../imgs/icn-tell.png) left bottom no-repeat;
		-webkit-background-size: contain;
		background-size: contain;
		margin-right: 7px;
	}
	.contact .txt02 {
		font-size: 10px;
		font-family: Avenir , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
		letter-spacing: -0.05em;
	}
@media only screen and (max-width:960px) {
	.contact {
		padding-right: 0;
		margin-right: 0;
		border-right: none;
		border-bottom: 1px solid #000;
		padding-bottom: 20px;
		text-align: center;
		margin-bottom: 20px;
	}
	.contact .txt {
		font-size: 14px;
	}
	.contact .tell a {
		font-size: 40px;
		pointer-events: auto;
	}
	.contact .tell a:before {
		width: 36px;
		-webkit-background-size: contain;
		background-size: contain;
	}
	.contact .txt02 {
		display: inline-block;
		text-align: left;
	}
}
@media only screen and (max-width:480px) {
	.contact br.sp {
		display: inline;
	}
	.contact .tell a:before {
		width: 26px;
	}
}
/* right */
	.right {
		display: flex;
		justify-content: center;
	}
@media only screen and (max-width:480px) {
	.right {
		display: block;
	}
}
/* ftrLogo */
	.ftrLogo {
		margin-right: 39px;
	}
	.ftrLogo .txt {
		font-size: 12px;
		margin-bottom: 17px;
		letter-spacing: -0.05em;
	}
	.ftrLogo .list {
		margin-top: -15px;
		margin-left: -50px;
		font-size: 0;
		letter-spacing: -1em;
		word-spacing: -1em;
	}
	.ftrLogo .list li {
		margin-top: 10px;
		margin-left: 50px;
		font-size: 10px;
		letter-spacing: normal;
		word-spacing: normal;
		vertical-align: top;
	}
	.ftrLogo .seller {
		margin-bottom: 3px;
		font-size: 11px;
	}
@media only screen and (max-width:960px) {
	.ftrLogo {
		margin-right: 17px;
	}
	.ftrLogo .txt {
		font-size: 10px;
		margin-bottom: 11px;
	}
	.ftrLogo .seller {
		font-size: 12px;
	}
}
@media only screen and (max-width:480px) {
	.ftrLogo {
		margin-right: 0;
		margin-bottom: 20px;
		text-align: center;
	}
	.ftrLogo img {
	}
}
/* club */
	.club {
		font-family: Avenir , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	}
	.club a {
		display: flex;
		justify-content: center;
		border: 1px solid #717171;
		color: #fff;
		padding: 11px;
		backface-visibility: hidden;
		-webkit-transition: opacity .5s ease;
		   -moz-transition: opacity .5s ease;
		    -ms-transition: opacity .5s ease;
		     -o-transition: opacity .5s ease;
		        transition: opacity .5s ease;
	}
	.club a:hover {
		opacity: 0.5;
	}
	.club .img {
		width: 59px;
		margin-right: 16px;
	}
	.club .txt {
		width: 162px;
		font-size: 12px;
		letter-spacing: 0;
		line-height: 1.334;
	}
@media only screen and (max-width:960px) {
	.club a {
		padding: 1%;
	}
	.club .txt {
		font-size: 10px;
	}
}
@media only screen and (max-width:480px) {
	.club .img {
		width: 15%;
		margin-right: 3%;
	}
	.club .txt {
		width: 80%;
	}
}
/* ftrLink */
	.ftrLink {
		text-align: center;
		font-size: 0;
		letter-spacing: -0.4em;
	}
	.ftrLink li {
		display: inline-block;
		font-family: Avenir , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
		letter-spacing: 0;
		margin-left: 30px;
	}
	.ftrLink li:first-child {
		margin-left: 0;
	}
	.ftrLink li a {
		color: #fff;
		font-size: 12px;
	}
	.ftrLink li a:hover {
		text-decoration: underline;
	}
@media only screen and (max-width:960px) {
	.ftrLink li {
		margin-bottom: 10px;
	}
	.ftrLink li a {
		text-decoration: underline;
	}
}
@media only screen and (max-width:480px) {
	.ftrLink li {
		display: block;
		margin-left: 0;
		margin-bottom: 0;
	}
	.ftrLink li a {
		display: block;
		padding-top: 10px;
		padding-bottom: 10px;
	}
}
/* ===================================
copyright
=================================== */
	.copyright {
		background-color: #000;
		color: #fff;
		padding-top: 3px;
		padding-bottom: 3px;
		text-align: center;
		font-family: Avenir , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
		border-top: 1px solid #666;
	}
	.copyright p{
		font-size: 10px;
	}

	.shiny {
	    position: absolute;
	    top: -150px;
	    z-index: 30;
	    img{max-width: none;}
	}
