@charset "UTF-8";
/* CSS Document */

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, figure {
  margin: 0;
  padding: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

h1, h2, h3, h4, h5, h6, th {
	font-weight: bold;
	font-weight: 600;
}

ol, ul { list-style: none; }

strong {
	font-weight: bold;
	font-weight: 600;
}

body {
  color: #fff;
  font-size: 16px;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	font-weight: normal;
	font-weight: 300;
  font-style: normal;
  line-height: 1.875;
	letter-spacing: 0;
}

a {
  color: #fff;
  transition: opacity 0.3s;
}

a:hover { opacity: 0.7; }

img { vertical-align: bottom; }

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus { outline: none; }

::selection {
	background: #8B1A1B;
	color: #fff;
}
/* for Firefox */
::-moz-selection{
	background: #8B1A1B;
	color: #fff;
}

/* # common
   -------------------------------------------------------------------------- */
main { background-color: #000; }

.l-content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 25px 40px;
}

img {
	width: 100%;
	height: auto;
}

.ib { display: inline-block;}

@media screen and (max-width:599px) {
	.sp-none { display: none; }
}
@media screen and (min-width:600px) {
	.pc-none { display: none; }
	
	.l-content {
		padding-bottom: 80px;
	}
}

/* # header
   -------------------------------------------------------------------------- */
.l-header {
	overflow: hidden;
	position: relative;
	padding: 10px 16px;
	background-color: #fff;
}
.active .l-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	z-index: 1001;
}

.header-logo {
	position: relative;
	float: left;
	width: 100px;
	line-height: 1;
	z-index: 1002;
}
.header-logo a { display: block; }

/* # header-menu
   ------------------------------------- */
/* header-btn */
.header-btn {
	position: relative;
	float: right;
	width: 33px;
	height: 33px;
	font-size: 0;
	text-align: center;
	vertical-align: middle;
	z-index: 1001;
}

.header-btn-ico,
.header-btn-ico:before,
.header-btn-ico:after {
	content: "";
	position: absolute;
	width: 19px;
	height: 1px;
	background-color: #000;
	transition: 0.3s;
}

.header-btn-ico {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.header-btn-ico:before {
	top: -8px;
	left: 0;
}
.header-btn-ico:after {
	bottom: -8px;
	left: 0;
}

.header-btn.btn-active .header-btn-ico { background-color: #fff; }
.header-btn.btn-active .header-btn-ico:before {
	top: 0;
	transform: rotate(45deg);
	background-color: #000;
}

.header-btn.btn-active .header-btn-ico:after {
	bottom: 0;
	transform: rotate(-45deg);
	background-color: #000;
}

/* heqder-nav */
.header-nav {
	position: fixed;
	top: 53px;
	right: 0;
	display: block;
	width: 100%;
	bottom: 0;
	background-color: #000;
	transform: translateX(100%);
	z-index: 1000;
}
.header-nav.menu-active { transform: translateX(0); }

.header-nav nav {
	overflow: scroll;
	width: 100%;
  height: 100%;
}

.header-nav ul { padding: 40px; }
.header-nav ul li a {
	display: block;
	padding: 12px 0;
	color: #fff;
	font-size: 18px;
	line-height: 1;
	text-decoration: none;
}

@media screen and (min-width:600px) {
	.l-header {
		padding: 0;
		background-color: #000;
	}
	.active .l-header { background-color: #000; }
	.header-logo {
		position: absolute;
		top: 5px;
		left: 10px;
		width: 140px;
		margin: 0;
		background: url("../../images/header/logo_white.png") no-repeat;
		background-size: cover;
	}
	.header-logo img { opacity: 0; }
	.header-btn {
		width: 60px;
		height: 60px;
		background-color: #000;
	}
	.header-btn-ico,
	.header-btn-ico:before,
	.header-btn-ico:after {
		height: 2px;
		background-color: #fff;
	}
	.header-btn.btn-active .header-btn-ico {
		background-color: #000;
	}
	.header-btn.btn-active .header-btn-ico:before,
	.header-btn.btn-active .header-btn-ico:after {
		background-color: #fff;
	}
	
	.header-point-link-wrap {
		overflow: hidden;
		float: right;
	}
	.header-point-link-wrap { border-left: 1px solid #555; }
	.header-point-link {
		position: relative;
		float: right;
		display: block;
		padding: 23px 20px 23px 38px;
		color: #fff;
		font-size: 14px;
		line-height: 1;
		text-decoration: none;
		background-color: #000;
		border-right: 1px solid #555;
		z-index: 1002;
	}
	.header-point-link.tel:before,
	.header-point-link.catalog:before,
	.header-point-link.faq:before {
		content: "";
		position: absolute;
		top: 23px;
		left: 20px;
		width: 14px;
		height: 14px;
	}
	.header-point-link.tel:before {
		background: url("../../images/header/ico_tel.png") no-repeat;
		background-size: contain;
	}
	.header-point-link.catalog:before {
		background: url("../../images/header/ico_catalog.png") no-repeat;
		background-size: contain;
	}
	.header-point-link.faq:before {
		background: url("../../images/header/ico_faq.png") no-repeat;
		background-size: contain;
	}
	
	.header-nav {
		top: 60px;
		background-color: #fff;
	}
	.header-nav ul li a {
		color: #000;
	}
}


/* # フッター
   -------------------------------------------------------------------------- */
.l-footer {
	padding: 23px 25px;
	color: #000;
}

.footer-inner {
	display: table;
	width: 100%;
}

.footer-txt {
	display: table-cell;
	font-size: 15px;
	line-height: 2;
	vertical-align: middle;
}
.footer-txt a { color: #000; }

.footer-logo {
	display: table-cell;
	width: 41.7647058824%;
	vertical-align: middle;
}

@media screen and (min-width:600px) {
	.footer-logo {
		width: 284px;
	}
}

/* # 凡庸クラス
   -------------------------------------------------------------------------- */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after { clear: both; }
.clearfix { zoom: 1; } /* For IE 6/7 */

.tr { text-align: right!important; }
.tl { text-align: left!important; }
.tc { text-align: center!important; }

.m0 { margin: 0!important; }
.mt0 { margin-top: 0!important; }
.mb0 { margin-bottom: 0!important; }
.ml0 { margin-left: 0!important; }
.mr0 { margin-right: 0!important; }

.p0 { padding: 0!important; }
.pt0 { padding-top: 0!important; }
.pb0 { padding-bottom: 0!important; }
.pl0 { padding-left: 0!important; }
.pr0 { padding-right: 0!important; }

.ib { display: inline-block!important; }


/* ==========================================================================
   # TOP用スタイル
   ========================================================================== */

/* # ヘッダー
   -------------------------------------------------------------------------- */
.l-top .l-header { background-color: transparent; }

@media screen and (max-width:599px) {
	.l-top.active .l-header { background-color: #fff; }
	.l-top .header-logo {
		background: url("../../images/header/logo_white.png") no-repeat;
		background-size: cover;
	}
	.l-top .header-logo img { opacity: 0; }
	.l-top.active .header-logo img { opacity: 1; }
	
	.l-top .header-btn-ico,
	.l-top .header-btn-ico:before,
	.l-top .header-btn-ico:after {
		background-color: #fff;
	}
	.l-top.active .header-btn-ico { background-color: #fff; }
	.l-top.active .header-btn-ico:before,
	.l-top.active .header-btn-ico:after { background-color: #000; }
	
	.l-top main {
		margin-top: -53px;
	}
}

@media screen and (min-width:600px) {
	.l-top.active .l-header { background-color: #000; }
	
	.l-top .header-point-link-wrap { border-left: none; }
	.l-top.active .header-point-link-wrap { border-left: 1px solid #555; }

	.l-top main {
		margin-top: -60px;
	}
}

/* # メインイメージ
   -------------------------------------------------------------------------- */
.top-mainimg {
	overflow: hidden;
	position: relative;
	height: 400px;
	z-index: 1;
}
.top-mainimg video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	height: 100%;
	transform: translateX(-50%) translateY(-50%);
}

@media screen and (min-width:600px) {
	.top-mainimg { height: 56.1538461538vw; }
}

/* # 見出し
   -------------------------------------------------------------------------- */
.top-catch {
	overflow: hidden;
	position: relative;
	min-height: 200px;
}
.top-catch:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 190px;
	height: 105px;
	background: url("../../images/common/bg_ttl01.png") no-repeat;
	background-size: contain;
	transform: translateX(-50%) translateY(-50%);
}
.top-catch-txt {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 24px;
	font-weight: normal;
	font-weight: 300;
	letter-spacing: 0.08em;
	line-height: 1.8333333333;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	white-space: nowrap;
	transform: translateX(-50%) translateY(-50%);
}
@media screen and (min-width:600px) {
	.top-catch {
		height: 280px;
	}
	.top-catch-txt {
		font-size: 36px;
	}
}

/* # お知らせ
   -------------------------------------------------------------------------- */
.top-news-list {
	margin-bottom: 40px;
	min-height: 112px;
	padding: 11px 0 11px 40px;
	background: url("../../images/top/bg_news.png") no-repeat;
	background-size: 25px 112px;
	background-position: top left;
}
.top-news-list li {
	margin-bottom: 12px;
}
.top-news-list li:last-child { margin-bottom: 0; }
.top-news-list li a {
	display: block;
	font-size: 18px;
	line-height: 1.2222222222;
	text-decoration: none;
}

/* # メニュー
   -------------------------------------------------------------------------- */
.top-menu  {
	margin-top: -25px;
	background: url("../../images/common/texture_black.jpg");
	background-size: 390px 273px;
}
.top-menu .l-content { padding-bottom: 80px; }

.top-menu-ttl {
	
	position: relative;
	margin: 0 auto 28px;
	width: 292px;
	height: 284px;
	padding-left: 8px;
	background: url("../../images/top/bg_ttl_menu.png") no-repeat;
	background-size: 284px 284px;
	background-position: top right;
}
.top-menu-ttl-txt {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #000;
	font-size: 24px;
	font-weight: normal;
	font-weight: 300;
	letter-spacing: 0.08em;
	line-height: 1.8333333333;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	white-space: nowrap;
	transform: translateX(-50%) translateY(-50%);
}
.l-content p + .top-menu-ttl,
.catalog-layout-right + .top-menu-ttl { margin-top: 80px; }

.top-menu-img {
	position: relative;
	margin-bottom: 80px;
}
.top-menu-img:before {
	content: "";
	position: absolute;
	bottom: -12px;
	right: -12px;
	width: 100%;
	height: 100%;
	background-color: #CCA01E;
}
.top-menu-img img { position: relative;}
.top-menu-img + .catalog-layout-left-txt .catalog-price,
.top-menu-img + .catalog-normal-ttl,
.top-menu-img + .catalog-layout-right-txt { margin-top: 40px; }
.top-menu-img + .catalog-ttl02,
.top-menu-ttl-layout + .catalog-ttl02 { margin-top: 80px; }

.top-menu-other {
	margin: 60px -25px 40px;
	padding: 18px 10px;
	color: #000;
	font-size: 18px;
	font-weight: normal;
	font-weight: 300;
	line-height: 1.2222222222;
	text-align: center;
	background-color: #fff;
}

.menu-top-btn {
	position: relative;
	display: block;
	width: 242px;
	margin: 23px auto 0;
	padding: 19px 0;
	color: #000;
	font-size: 18px;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	background-color: #fff;
}
.menu-top-btn:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform-origin: top right;
	transform: rotate(45deg);
}

.top-menu-intro-content01 + .top-menu-intro-content02,
.top-menu-intro-content02 + .top-menu-intro-content03 { margin-top: 60px; }

.top-3menu-item + .top-3menu-item { margin-top: 60px; }

@media screen and (min-width:600px) {
	.top-menu-intro  {
		
	}
	.top-menu-intro-ttl {
		float: left;
		width: 292px;
	}
	.top-menu-intro-ttl .top-menu-ttl {
		margin: 0;
	}
	.top-menu-intro-content01 {
		float: right;
		width: calc(100% - 292px - 40px);
	}
	.top-menu-intro-content02 {
		clear: both;
		float: left;
		width: calc(100% - 292px - 40px);
	}
	.top-menu-intro-content03 {
		float: right;
		width: 292px;
	}
	.top-menu-intro-content01 .catalog-ttl02,
	.top-menu-intro-content02 .catalog-ttl02,
	.top-menu-intro-content03 .catalog-ttl02 { margin-top: 0; }
	
	.top-3menu {
		display: table;
	}
	.top-3menu-item {
		position: relative;
		display: table-cell;
		padding: 0 12px 50px;
		vertical-align: top;
	}
	.top-3menu-item:last-child { margin-right: 0; }
	.top-3menu-item + .top-3menu-item { margin-top: 0; }
	
	.menu-top-btn {
		position: absolute;
		bottom: 0;
		left: 12px;
		right: 12px;
		width: auto;
		padding: 12px 0;
		font-size: 14px;
	}
}

/* # 店舗のご案内
   -------------------------------------------------------------------------- */
.inside-img-wrap {
	overflow: hidden;
	margin-top: 45px;
}

@media screen and (min-width:600px) {
	.l-content .inside-img-wrap figure {
		float: left;
		width: 32%;
		margin: 0 2% 0 0;
	}
	.l-content .inside-img-wrap figure:last-child { margin-right: 0; }
}


/* ==========================================================================
   # 下層共通スタイル
   ========================================================================== */

/* # タイトル
   -------------------------------------------------------------------------- */
.layer-ttl-wrap {
	padding: 25px;
}

.layer-ttl {
	font-size: 24px;
	line-height: 1;
}

/* # ぱんくず
   ------------------------------------- */
.l-breadcrumb {
	overflow: hidden;
	margin-top: 25px;
}
.l-breadcrumb li {
	float: left;
	font-size: 14px;
	line-height: 1;
}
.l-breadcrumb li + li {
	position: relative;
	margin-left: 14px;
}
.l-breadcrumb li + li:before {
	content: "/";
	position: absolute;
	left: -14px;
	right: 0;
	width: 14px;
	height: 14px;
	text-align: center;
}
.l-breadcrumb li a {
	display: block;
	color: #fff;
	text-decoration: none;
}

@media screen and (min-width:600px) {
	.layer-ttl-wrap {
		margin-bottom: 25px;
		padding-top: 88px;
		padding-bottom: 89px;
		height: 240px;
		background: url("../../images/common/bg_layer_ttl.jpg") no-repeat;
		background-size: cover;
		background-position: center center;
	}
}

/* # メインイメージ
   -------------------------------------------------------------------------- */
.l-catch {
	overflow: hidden;
	position: relative;
	min-height: 273px;
	margin-bottom: 25px;
	background: url("../../images/common/texture_black.jpg");
	background-size: 390px 273px;
}
.l-catch:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 190px;
	height: 105px;
	background: url("../../images/common/bg_ttl01.png") no-repeat;
	background-size: contain;
	transform: translateX(-50%) translateY(-50%);
}
.l-catch-txt {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 24px;
	font-weight: normal;
	font-weight: 300;
	letter-spacing: 0.08em;
	line-height: 1.8333333333;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	white-space: nowrap;
	transform: translateX(-50%) translateY(-50%);
}

@media screen and (min-width:600px) {
	.l-catch {
		height: 400px;
	}
	.layer-ttl-wrap + .l-catch { margin-top: -25px; }
	.l-catch-txt {
		font-size: 36px;
	}
}

/* # 画像
   -------------------------------------------------------------------------- */
.l-content figure {
	margin-bottom: 25px;
}
.l-content p + figure { margin-top: 45px; }

/* # テキスト
   -------------------------------------------------------------------------- */
.l-content p + p { margin-top: 16px; }

.l-content p .kome,
.recruit-list dd .kome {
	display: block;
	font-size: 12px;
	line-height: 1.3333333333;
}


/* ==========================================================================
   # 当店をご利用のお客様へ
   ========================================================================== */
.faq-wrap {
	margin-top: -25px;
	background: url("../../images/common/texture_black.jpg");
	background-size: 390px 273px;
}
.faq-wrap .l-content { padding-bottom: 60px; }

.faq-ttl {
	position: relative;
	margin-bottom: 17px;
	padding-left: 45px;
	font-size: 20px;
	font-weight: normal;
	font-weight: 300;
	line-height: 1.6;
}
.faq-ttl:before {
	content: "";
	position: absolute;
	top: -2px;
	left: 0;
	width: 34px;
	height: 34px;
	background: url("../../images/faq/ico_ttl_faq.png") no-repeat;
	background-size: contain;
}
.l-content p +.faq-ttl { margin-top: 40px; }

.l-content .faq-wrap P { padding-left: 45px; }

@media screen and (min-width:600px) {
	.faq-wrap .l-content { padding-bottom: 120px; }
	.faq-ttl { font-size: 28px; }
	.faq-ttl:before { top: 4px; }
}


/* ==========================================================================
   # 鳥善のおもてなし
   ========================================================================== */
.service-ttl {
	position: relative;
	margin-left: -15px;
	padding: 50px 0 30px 50px;
	font-size: 20px;
	font-weight: normal;
	font-weight: 300;
	line-height: 1;
	background: url("../../images/service/ico_ttl_service.png") no-repeat;
	background-size: 100px 100px;
	background-position: left top;
}


/* ==========================================================================
   # メニュー
   ========================================================================== */
.catalog-ttl01-wrap { margin: 60px -25px 15px; }
.catalog-ttl01 {
	display: table;
	width: 100%;
	height: 240px;
	padding-bottom: 8px;
	background: url("../../images/catalog/bg_ttl_catalog01.png") no-repeat;
	background-size: 240px 240px;
	background-position: top center;
}
.catalog-ttl01-inner {
	display: table-cell;
	width: 100%;
	height: 232px;
	color: #000;
	font-size: 24px;
	font-weight: normal;
	font-weight: 300;
	line-height: 1.1666666667;
	text-align: center;
	vertical-align: middle;
}

.catalog-ttl02 {
	width: 150px;
	margin: 45px auto 36px;
	padding: 12px 0;
	font-size: 18px;
	font-weight: normal;
	font-weight: 300;
	line-height: 1;
	text-align: center;
	background-color: #8B1A1B;
}

/*　価格　*/
.catalog-price {
	overflow: hidden;
	font-size: 20px;
	line-height: 1;
}
.catalog-price .head {
	float: left;
	display: block;
}
.catalog-price .price {
	float: right;
	display: block;
}
.l-content p.catalog-price-sub + p.catalog-price {
	margin-top: 18px;
}
.catalog-price.separate { margin-bottom: 40px; }

.catalog-price-sub {
	font-size: 12px;
	line-height: 1.3333333333;
}
.l-content p.catalog-price + p.catalog-price-sub {
	margin-top:8px;
}
.l-content .catalog-price-sub + p {
	margin-top: 16px;
}

.catalog-price.center,
.catalog-price-sub.center {
	max-width: 340px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width:599px) {
	.catalog-price,
	.catalog-price-sub {
		max-width: 340px;
		margin: 0 auto;
	}
}

/*　センタリングタイトル　*/
.catalog-normal-ttl {
	font-size: 20px;
	font-weight: normal;
	font-weight: 300;
	line-height: 1;
	text-align: center;
}
.catalog-normal-ttl + .catalog-normal-ttl { margin-top: 10px; }
.catalog-normal-ttl + p {
	max-width: 340px;
	margin: 16px auto 0;
}

/* セットメニュー */
.catalog-menu-block {
	margin: 20px 0;
}
.catalog-menu-wrap {
	width: 100%;
	overflow: scroll;
	background-color: #260707;
	-ms-overflow-style: none;
	scrollbar-width: none;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.catalog-menu-wrap::-webkit-scrollbar { display:none; }
.catalog-menu-wrap + .catalog-menu-wrap { margin-top: 15px; }
.catalog-menu {
	width: 395px;
	height: 230px;
	margin: 0 auto;
	padding: 20px;
}
.catalog-menu-inner {
	width: 100%;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.catalog-menu-ttl {
	width: 67px;
	height: 178px;
	margin-left: 20px;
	padding: 30px 25px 0;
	font-size: 16px;
	font-weight: normal;
	font-weight: 300;
	line-height: 1;
	letter-spacing: 0.08em;
	white-space: nowrap;
	background: url("../../images/catalog/bg_ttl_catalog02.png") no-repeat;
	background-position: top center;
	background-size: 100%;
}

.catalog-menu-list li {
	margin-left: 13px;
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: 0.08em;
	white-space: nowrap;
}
.catalog-menu-list li:last-child { margin-left: 0; }


.l-content p + .catalog-layout-left,
.l-content p + .catalog-layout-right,
.catalog-layout-left + .catalog-layout-right,
.catalog-layout-right + .catalog-layout-left { margin-top: 45px; }

@media screen and (min-width:600px) {
	.catalog-menu-block {
		overflow: hidden;
	}
	.catalog-menu-wrap {
		float: left;
		width: 49%;
	}
	.catalog-menu-wrap + .catalog-menu-wrap {
		float: right;
		margin-top: 0;
	}
	
	.catalog-layout-left,
	.catalog-layout-right {
		zoom: 1;
	}
	.catalog-layout-left:before,
	.catalog-layout-left:after,
	.catalog-layout-right:before,
	.catalog-layout-right:after {
		content: "";
  	display: table;
	}
	.catalog-layout-left:after,
	.catalog-layout-right:after {
		clear: both;
	}
	.catalog-layout-left figure {
		float: left;
		width: 50%;
	}
	.catalog-layout-left-txt {
		float: right;
		width: 50%;
		padding: 30px 0 0 30px;
	}
	.catalog-layout-right figure {
		float: right;
		width: 50%;
	}
	.catalog-layout-right-txt {
		float: left;
		width: 50%;
		padding: 30px 30px 0 0;
	}
	
	.catalog-layout-left .catalog-ttl02 { margin-top: 0; }
}

/* ==========================================================================
   # 店舗情報
   ========================================================================== */
.map {
	width: 100%;
	height: 230px;
	margin-bottom: 20px;
}

@media screen and (min-width:600px) {
	.map-side-img {
		float: left;
		width: 49%;
		margin-right: 2%;
	}
	.map {
		float: right;
		width: 49%;
		height: 31vw;
		max-height: 310px
	}
	.map + p { clear: both; }
}


/* ==========================================================================
   # プライバシーポリシー
   ========================================================================== */
.privacy-ttl {
	margin-bottom: 7px;
	padding-left: 1em;
	color: #fff;
	font-size: 20px;
	line-height: 1.6;
	text-indent:-1em;
}
.privay-list + .privacy-ttl,
.l-content p + .privacy-ttl { margin-top: 22px; }

.l-content p + .privay-list { margin-top: 16px; }

.privay-list li {
	padding-left: 1em;
	text-indent:-1em;
	font-size: 16px;
	line-height: 1.875;
}


/* ==========================================================================
   # 採用情報
   ========================================================================== */
.recruit-ttl01 {
	margin-bottom: 40px;
	padding-left: 1em;
	color: #fff;
	font-size: 20px;
	line-height: 1.6;
	text-indent:-1em;
}

.recruit-ttl02 {
	margin-bottom: 17px;
	padding: 34px 0;
	font-size: 16px;
	font-weight: normal;
	font-weight: 300;
	line-height: 1;
	text-align: center;
	background: url("../../images/recruit/bg_ttl_recruit.png") no-repeat;
	background-size: 151px 84px;
	background-position: center center;
}

.recruit-list {
	margin: 23px 0 48px;
	font-size: 14px;
	line-height: 1;
	border-top: 1px solid #707070;
}
.recruit-list dt {
	padding: 16px 10px 12px;
}
.recruit-list dd {
	margin: 0;
	padding: 0 10px 14px;
	line-height: 1.2857142857;
	border-bottom: 1px solid #707070;
}


/* ==========================================================================
   # お知らせ
   ========================================================================== */
.news-list {
	margin-top: 40px;
}

.news-list-item {
	display: block;
	margin-bottom: 40px;
	text-decoration: none;
}

.l-content .news-list-item figure.img {
	margin-bottom: 15px;
}

.l-content .news-list-item .date {
	font-size: 12px;
}

.l-content .news-list-item .ttl {
	font-size: 16px;
}

.l-content .news-list-item .desc p {
	overflow: hidden;
	font-size: 14px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-ttl {
	margin-bottom: 30px;
	padding-bottom: 10px;
	font-size: 16px;
	font-weight: normal;
	font-weight: 300;
	line-height: 1.25;
	border-bottom: 1px solid #707070;
}

.news-date {
	margin-bottom: 20px;
	font-size: 12px;
	line-height: 1;
}























