@charset "UTF-8";
/*==============================================

    0. STYLE SHEET

==============================================*/
/*==============================================

    1. RESET

==============================================*/
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	border: 0;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	font: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th, td {
	text-align: left;
	vertical-align: top;
}

img {
	border: none;
	vertical-align: top;
}

/*==============================================

    2. SETTING MIXIN

==============================================*/
/*==============================================
    2-1. mixins
==============================================*/
/* font family */
/*==============================================

    3. BASE

==============================================*/
html {
	font-size: 15px;
}

@media screen and (min-width: 769px) {
	html {
		font-size: 16px;
	}
}

body {
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	line-height: 1.6;
	letter-spacing: .06em;
	background-color: #f6f6f6;
	color: #000000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	-webkit-transition: opacity .4s ease;
	transition: opacity .4s ease;
}

a:link, a:visited {
	color: #333;
}

a:hover {
	opacity: .7;
}

a[data-rel="external"]:after {
	content: '';
	width: 1em;
	height: 1em;
	display: inline-block;
	vertical-align: middle;
	margin-left: .5em;
	background: transparent url("../image/icon-external.png") no-repeat scroll center center;
	background-size: contain;
	margin-right: .5em;
}

/*==============================================

    4. LAYOUT

==============================================*/
/*==============================================
    4-1. LAYOUT LIMIT
==============================================*/
/*!
---
name: レイアウト 最大幅
category:
  - layout/layout
---

```jade
.l-limit
    .u-bg--red
        p.u-center 最大幅: 1400px, 最小幅: 1000px
```
*/
.l-limit {
	margin: 0 auto;
	overflow: hidden;
	background-color: #ffffff;
}

@media screen and (min-width: 769px) {
	.l-limit {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		min-width: 1000px;
		max-width: 1400px;
	}
}

.l-limit--top {
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.l-limit--top {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		min-width: 1000px;
		max-width: 1600px;
	}
}

/*==============================================
    4-2. LAYOUT FRAME
==============================================*/
/*!
---
name: レイアウト 幅(フレーム)
category:
  - layout/layout
---

```jade
.l-limit
    .l-frame-full.u-bg--red
        p.u-center 幅全体の100%

.l-limit
    .l-frame.u-bg--blue
        p.u-center 幅全体の83%

.l-limit
    .l-frame
        .l-frame--sm.u-bg--green
            p.u-center 幅全体の64.7%

.l-limit
    .l-frame
        .l-frame--md.u-bg--orange
            p.u-center 幅全体の82.4%
```
*/
.l-frame--full {
	width: 100%;
}

.l-frame {
	width: 89.33333333%;
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.l-frame {
		width: 83.33333333%;
	}
}

.l-frame--sm {
	width: 100%;
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.l-frame--sm {
		width: 64.7%;
	}
}

.l-frame--md {
	width: 100%;
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.l-frame--md {
		width: 82.4%;
	}
}

/*==============================================
    4-3. LAYOUT COLUMNS
==============================================*/
/*!
---
name: 横並び(カラム)
category:
  - layout/layout
---

```jade
.l-limit
    .l-col
        .u-bg--red アイテム
        .u-bg--blue アイテム
        .u-bg--green アイテム
        .u-bg--red アイテム
        .u-bg--blue アイテム
        .u-bg--green アイテム
        .u-bg--red アイテム
        .u-bg--blue アイテム
        .u-bg--green アイテム

    .l-col
        .l-col__item
            .u-bg--red アイテム
        .l-col__item
            .u-bg--blue アイテム

    .l-col.l-col--fw
        .l-col__item.l-col__3
            .u-bg--red アイテム
        .l-col__item.l-col__3
            .u-bg--blue アイテム
        .l-col__item.l-col__3
            .u-bg--green アイテム
    
    .l-col.l-col--rr
        .l-col__item
            .u-bg--red アイテム(右に来る)
        .l-col__item
            .u-bg--blue アイテム(左に来る)
```
*/
.l-col {
	width: 100%;
}

@media screen and (min-width: 769px) {
	.l-col {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.l-col--sp {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.l-col__item {
	width: 100%;
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.l-col__item {
		width: auto;
		margin: 0;
	}
}

@media screen and (min-width: 769px) {
	.l-col__3 {
		width: 29.6%;
	}
}

.l-col__4 {
	width: 44.77612%;
}

@media screen and (min-width: 769px) {
	.l-col__4 {
		width: 20.1%;
	}
}

.l-col--fw {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.l-col--rr {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.l-col--cetner {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.l-col--end {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

/*==============================================
    4-X. LAYOUT XXXXXX
==============================================*/
/*==============================================

    5. HEADER 

==============================================*/
/*==============================================
    5-1. l-header
==============================================*/
.l-header {
	z-index: 10;
	position: fixed;
	width: 100%;
	top: 0;
	/* padding: 1em 5.3%; */
	padding: 1.8em 5.3%;
	border-top: 3px solid #00bc22;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #ffffff;
}

@media screen and (min-width: 769px) {
	.l-header {
		position: relative;
		max-width: 1400px;
		min-width: 1000px;
		margin: 0 auto;
		/* padding: 2em 40px; */
		padding: 2.5em 40px;
	}
}

.l-header--dummy {
	position: relative;
	height: 96px;
}

@media screen and (min-width: 769px) {
	.l-header--dummy {
		display: none;
	}
}

@media screen and (min-width: 769px) {
	.l-header--col {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: end;
		-webkit-align-items: flex-end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
}

.l-header__gnav {
	z-index: 50;
	display: none;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	top: 22px;
	bottom: 0;
	left: 0;
	background-color: #ffffff;
	overflow: scroll;
}

@media screen and (min-width: 769px) {
	.l-header__gnav {
		display: block;
		position: relative;
		/* width: 533px; */
		width: 500px;
		height: auto;
		left: auto;
		margin: 0 0 0 auto;
		background-color: transparent;
		overflow: visible;
	}

	.l-footer__gnav {
		/* width: 30%; */
		width: 45%;
		margin: 0 auto;;
	}
}

.l-header__logo {
	/* width: 47px; */
	width: 120px;
}

@media screen and (min-width: 769px) {
	.l-header__logo {
		/* width: 74px; */
		width: 150px;
	}
}

.clone {
	display: none;
}

@media screen and (min-width: 769px) {
	.clone {
		position: fixed;
		display: block;
		max-width: 1400px;
		min-width: 1000px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		top: -117px;
		right: 0;
		left: 0;
		margin: auto;
		-webkit-transition: all .3s ease 0s;
		transition: all .3s ease 0s;
	}
}

.clone .l-header__breadcrumb {
	display: none;
}

@media screen and (min-width: 769px) {
	.js-sticky.clone {
		top: 0;
	}
}

/*==============================================
    5-2. l-header__btn
==============================================*/
.l-header__btn {
	z-index: 100;
	position: absolute;
	width: 44px;
	height: 44px;
	top: 20%;
	right: 6.25%;
	cursor: pointer;
}

@media screen and (min-width: 769px) {
	.l-header__btn {
		display: none;
	}
}

.l-header__btn span {
	position: absolute;
	width: 40px;
	height: 1px;
	top: 1em;
	right: 0;
	left: 0;
	margin: auto;
	background: #000000 none no-repeat scroll top left;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}

.l-header__btn span::before {
	content: '';
	position: absolute;
	width: 40px;
	height: 1px;
	top: 10px;
	background: #000000 none no-repeat scroll top left;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}

.l-header__btn span::after {
	content: '';
	position: absolute;
	width: 40px;
	height: 1px;
	top: -10px;
	background: #000000 none no-repeat scroll top left;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}

.js-active.l-header__btn span {
	background: #ffffff none no-repeat scroll top left;
}

.js-active.l-header__btn span::before {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	top: 0;
}

.js-active.l-header__btn span::after {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	top: 0;
}

/*==============================================
    5-3. l-nav
==============================================*/
.l-nav {
	position: relative;
	padding: 3em 0 1em 0;
}

@media screen and (min-width: 769px) {
	.l-nav {
		padding: 0;
	}
}

@media screen and (min-width: 769px) {
	.l-nav__ul {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}

.l-nav__ul__item {
	position: relative;
	display: none;
	text-align: center;
	padding: 1em 0;
	font-size: 1.3333333333em;
	font-weight: bold;
	color: #000000;
}

@media screen and (min-width: 769px) {
	.l-nav__ul__item {
		display: block;
		cursor: pointer;
		padding: 0 30px;
		color: #000000;
		font-size: 1em;
		border-right: 1px solid #000000;
	}
}

@media screen and (min-width: 769px) {
	.l-nav__ul__item:nth-child(1) {
		border-left: 1px solid #000000;
	}
}

@media screen and (min-width: 769px) {
	.l-nav__ul__item span {
		position: relative;
		display: inline-block;
	}
	.l-nav__ul__item span::before, .l-nav__ul__item span::after {
		content: '';
		position: absolute;
		width: 50%;
		height: 1px;
		bottom: 0;
		background-color: #000000;
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		-webkit-transition: -webkit-transform .2s ease .1s;
		transition: -webkit-transform .2s ease .1s;
		transition: transform .2s ease .1s;
		transition: transform .2s ease .1s, -webkit-transform .2s ease .1s;
	}
	.l-nav__ul__item span::before {
		left: 0;
		-webkit-transform-origin: left;
		transform-origin: left;
	}
	.l-nav__ul__item span::after {
		right: 0;
		-webkit-transform-origin: right;
		transform-origin: right;
	}
	.l-nav__ul__item span:hover::before, .l-nav__ul__item span:hover::after {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	.l-nav__ul__item span:hover::before {
		-webkit-transform-origin: right;
		transform-origin: right;
	}
	.l-nav__ul__item span:hover::after {
		-webkit-transform-origin: left;
		transform-origin: left;
	}
}

.l-nav__ul__item a {
	color: #000000;
	font-weight: bold;
}

@media screen and (min-width: 769px) {
	.l-nav__ul__item a {
		position: relative;
		display: inline-block;
	}
	.l-nav__ul__item a::before, .l-nav__ul__item a::after {
		content: '';
		position: absolute;
		width: 50%;
		height: 1px;
		bottom: 0;
		background-color: #000000;
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		-webkit-transition: -webkit-transform .2s ease .1s;
		transition: -webkit-transform .2s ease .1s;
		transition: transform .2s ease .1s;
		transition: transform .2s ease .1s, -webkit-transform .2s ease .1s;
	}
	.l-nav__ul__item a::before {
		left: 0;
		-webkit-transform-origin: left;
		transform-origin: left;
	}
	.l-nav__ul__item a::after {
		right: 0;
		-webkit-transform-origin: right;
		transform-origin: right;
	}
	.l-nav__ul__item a:hover::before, .l-nav__ul__item a:hover::after {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	.l-nav__ul__item a:hover::before {
		-webkit-transform-origin: right;
		transform-origin: right;
	}
	.l-nav__ul__item a:hover::after {
		-webkit-transform-origin: left;
		transform-origin: left;
	}
}

.l-nav__ul__item span {
	position: relative;
}

.l-nav__ul__item[date-state="parent"] {
	position: relative;
}

.l-nav__ul__item[date-state="parent"]::before {
	content: '';
	position: absolute;
	width: 10px;
	height: 1px;
	top: 0;
	bottom: 0;
	right: 70px;
	margin: auto;
	background-color: #000000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: -webkit-transform .5s ease 0s;
	transition: -webkit-transform .5s ease 0s;
	transition: transform .5s ease 0s;
	transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;

	display: none;
}

.l-nav__ul__item[date-state="parent"]::after {
	content: '';
	position: absolute;
	width: 10px;
	height: 1px;
	top: 0;
	bottom: 0;
	right: 64px;
	margin: auto;
	background-color: #000000;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: -webkit-transform .5s ease 0s;
	transition: -webkit-transform .5s ease 0s;
	transition: transform .5s ease 0s;
	transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;

	display: none;
}

@media screen and (min-width: 769px) {
	.l-nav__ul__item[date-state="parent"]::before, .l-nav__ul__item[date-state="parent"]::after {
		display: none;
	}
}

.js-active.l-nav__ul__item[date-state="parent"]::before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.js-active.l-nav__ul__item[date-state="parent"]::after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.l-pulldown {
	padding: 1em 0 0 0;
	display: none;
}

@media screen and (min-width: 769px) {
	.l-pulldown {
		z-index: 5;
		position: absolute;
		width: 100%;
		top: 40px;
		right: 0;
		left: 0;
		margin: auto;
		padding: 1em 0;
		background-color: #ffffff;
	}
}

.l-pulldown__item {
	padding: .8em 0;
	font-size: 16px;
}

@media screen and (min-width: 769px) {
	.l-pulldown__item {
		padding: .5em 0;
		font-size: .8em;
	}
}

.l-pulldown__item a {
	color: #5c5c5c;
	font-weight: 400;
}

@media screen and (min-width: 769px) {
	.l-pulldown__item a {
		color: #000000;
	}
}

/*==============================================
    5-4. l-sub
==============================================*/
@media screen and (min-width: 769px) {
	.l-sub {
		position: absolute;
		top: -40px;
		right: 0;
	}
}

@media screen and (min-width: 769px) {
	.l-sub__ul {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}

.l-sub__ul__item {
	display: none;
	text-align: center;
	padding: 1.2em 0;
	font-size: 16px;
}

@media screen and (min-width: 769px) {
	.l-sub__ul__item {
		display: block;
		padding: 0 0 0 2em;
		font-size: 0.75em;
	}
}

.l-sub__ul__item a {
	color: #5c5c5c;
	font-weight: 400;
}

@media screen and (min-width: 769px) {
	.l-sub__ul__item a {
		position: relative;
		display: inline-block;
	}
	.l-sub__ul__item a::before, .l-sub__ul__item a::after {
		content: '';
		position: absolute;
		width: 50%;
		height: 1px;
		bottom: 0;
		background-color: #000000;
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		-webkit-transition: -webkit-transform .2s ease .1s;
		transition: -webkit-transform .2s ease .1s;
		transition: transform .2s ease .1s;
		transition: transform .2s ease .1s, -webkit-transform .2s ease .1s;
	}
	.l-sub__ul__item a::before {
		left: 0;
		-webkit-transform-origin: left;
		transform-origin: left;
	}
	.l-sub__ul__item a::after {
		right: 0;
		-webkit-transform-origin: right;
		transform-origin: right;
	}
	.l-sub__ul__item a:hover::before, .l-sub__ul__item a:hover::after {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	.l-sub__ul__item a:hover::before {
		-webkit-transform-origin: right;
		transform-origin: right;
	}
	.l-sub__ul__item a:hover::after {
		-webkit-transform-origin: left;
		transform-origin: left;
	}
}

/*==============================================
    5-5. l-header__breadcrumb
==============================================*/
.l-header__breadcrumb {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding-top: 1em;
}

@media screen and (min-width: 769px) {
	.l-header__breadcrumb {
		padding-top: 1em;
	}
}

.l-header__breadcrumb__item {
	font-size: 0.6875em;
}

.l-header__breadcrumb__item a {
	display: block;
	color: #5c5c5c;
}

.l-header__breadcrumb__item span {
	padding: 0 .5em;
}

/*==============================================
    5-X. 
==============================================*/
.news a[date-carrent="news"] {
	color: #00bc22;
}

.value a[date-carrent="value"] {
	color: #00bc22;
}

.store a[date-carrent="store"] {
	color: #00bc22;
}

.contact a[date-carrent="contact"] {
	color: #00bc22;
}

.recruitment a[date-carrent="recruitment"] {
	color: #00bc22;
}

.privacypolicy a[date-carrent="privacypolicy"] {
	color: #00bc22;
}

.about li[date-carrent="about"] {
	color: #00bc22;
}

.company li[date-carrent-more="company"] {
	color: #00bc22;
}

/* ==============================================

    5. HEADER FOR TOP

==============================================*/
.top .l-header {
	position: fixed;
	width: 100%;
	padding: 1em 5.3%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: transparent;
	-webkit-transition: all .2s ease 0s;
	transition: all .2s ease 0s;
}

@media screen and (min-width: 769px) {
	.top .l-header {
		position: absolute;
		top: 0;
		max-width: 1600px;
		min-width: 1000px;
		padding: 2em 40px;
	}
}

.top .l-header__btn {
	top: 30%;
}

.top .js-chenge.l-header__btn span {
	background: #000000 none no-repeat scroll top left;
}

.top .js-chenge.l-header__btn span::before {
	background: #000000 none no-repeat scroll top left;
}

.top .js-chenge.l-header__btn span::after {
	background: #000000 none no-repeat scroll top left;
}

.top .l-header__btn span {
	background: #ffffff none no-repeat scroll top left;
}

.top .l-header__btn span::before {
	background: #ffffff none no-repeat scroll top left;
}

.top .l-header__btn span::after {
	background: #ffffff none no-repeat scroll top left;
}

.top .js-active.l-header__btn span {
	background: #ffffff none no-repeat scroll top left;
}

.top .js-active.l-header__btn span::before {
	background: #000000 none no-repeat scroll top left;
}

.top .js-active.l-header__btn span::after {
	background: #000000 none no-repeat scroll top left;
}

@media screen and (min-width: 769px) {
	.top .l-nav__ul__item {
		color: #ffffff;
		border-right: 1px solid #ffffff;
	}
}

.top .l-nav__ul__item:nth-child(1) {
	border-left: 1px solid #ffffff;
}

@media screen and (min-width: 769px) {
	.top .l-nav__ul__item a, .top .l-sub__ul__item a, .top .l-nav__ul__item span {
		color: #ffffff;
	}
	.top .l-nav__ul__item a::before, .top .l-nav__ul__item a::after, .top .l-sub__ul__item a::before, .top .l-sub__ul__item a::after, .top .l-nav__ul__item span::before, .top .l-nav__ul__item span::after {
		background-color: #ffffff;
	}
}

@media screen and (min-width: 769px) {
	.top .l-pulldown {
		background-color: #ffffff;
	}
}

.top .l-pulldown__item a {
	color: #5c5c5c;
}

@media screen and (min-width: 769px) {
	.top .l-pulldown__item a {
		color: #000000;
	}
}

@media screen and (min-width: 769px) {
	.top .l-sub__ul__item a {
		color: #ffffff;
	}
}

.top .clone {
	display: none;
}

@media screen and (min-width: 769px) {
	.top .clone {
		position: fixed;
		display: block;
		max-width: 1600px;
		min-width: 1000px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		top: -116px;
		right: 0;
		left: 0;
		margin: auto;
		-webkit-transition: all .3s ease 0s;
		transition: all .3s ease 0s;
		box-sizing: border-box;
		height: auto;
		background-color: #ffffff;
	}
	.top .clone .l-nav__ul__item, .top .clone .l-nav__ul__item a, .top .clone .l-sub__ul__item a, .top .clone .l-nav__ul__item span, .top .clone .l-sub__ul__item a {
		color: #000000;
	}
	.top .clone .l-nav__ul__item {
		border-right: 1px solid #000000;
	}
	.top .clone .l-nav__ul__item a::before, .top .clone .l-nav__ul__item a::after, .top .clone .l-sub__ul__item a::before, .top .clone .l-sub__ul__item a::after, .top .clone .l-nav__ul__item span::before, .top .clone .l-nav__ul__item span::after {
		background-color: #000000;
	}
}

@media screen and (min-width: 769px) {
	.top .js-sticky.clone {
		top: 0;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
}

/*==============================================

    6. FOOTER

==============================================*/
/*==============================================
    6-1. l-footer
==============================================*/
.l-footer {
	position: relative;
	padding: 2em 0;
	background-color: #e8eef4;
}

@media screen and (min-width: 769px) {
	.l-footer {
		margin: 0 auto;
		padding: .5em 0;
	}
}

.l-footer__gnav {
	padding: 1em 0;
}

@media screen and (min-width: 769px) {
	.l-footer__gnav {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.l-footer__gnav__item {
	margin: 2em 0;
	font-size: 1.0666666667em;
	font-weight: bold;
}

@media screen and (min-width: 769px) {
	.l-footer__gnav__item {
		font-size: 1em;
	}
}

.l-nestlist {
	padding-top: .5em;
}

@media screen and (min-width: 769px) {
	.l-nestlist {
		padding-top: .3em;
	}
}

.l-nestlist__item {
	margin: .5em 0;
	font-size: 0.8125em;
	font-weight: 400;
}

.l-footer__info {
	margin-top: 2em;
}

@media screen and (min-width: 769px) {
	.l-footer__info {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		padding-bottom: 60px;
	}
}

.l-footer__info__logo {
	width: 23.8%;
	width: 33%;
}

@media screen and (min-width: 769px) {
	.l-footer__info__logo {
		/* width: 80px; */
		width: 150px;
	}
}

@media screen and (min-width: 769px) {
	.l-footer__info__list {
		padding-left: 2em;
	}
}

.l-footer__info__list__title {
	padding: 1em 0;
	font-size: 0.9333333333em;
	font-weight: bold;
}

@media screen and (min-width: 769px) {
	.l-footer__info__list__title {
		padding: 0;
		font-size: 1em;
	}
}

.l-footer__info__list__contents {
	font-size: 0.7333333333em;
	line-height: 2.0;
}

@media screen and (min-width: 769px) {
	.l-footer__info__list__contents {
		font-size: 0.8125em;
		line-height: 1.72;
	}
}

.l-copyright {
	padding: 1em 5.3% 3em;
	background-color: #000000;
}

@media screen and (min-width: 769px) {
	.l-copyright {
		text-align: center;
		padding: 1em 5.3%;
	}
}

.l-copyright small {
	color: #ffffff;
	font-size: 0.7333333333em;
}

@media screen and (min-width: 769px) {
	.l-copyright small {
		font-size: 0.6875em;
	}
}

.l-footer__link__privacy {
	padding-top: 2em;
	font-size: .6em;
}

@media screen and (min-width: 769px) {
	.l-footer__link__privacy {
		padding: 0 0 60px 0;
	}
}

/*==============================================

    7. COMPONENT

==============================================*/
/*==============================================
    7-1. COMPONENT TEXT
==============================================*/
/*!
---
name: 見出し/テキスト
category:
  - object/component
---

```jade
div(style="position:relative; margin: 3em 0;")
    .c-h1 Main title
        br
        spanサブタイトル
div(style="position:relative; margin: 3em 0;")
    .c-h2 見出し
div(style="position:relative; margin: 3em 0;")
    .c-p これはテストです

```
*/
.c-h1 {
	overflow: hidden;
	text-align: center;
	margin-bottom: 1.2em;
	padding-top: 2em;
	font-size: 2.4em;
	line-height: 1;
	background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(#f7f7f7));
	background: linear-gradient(0deg, #ffffff, #f7f7f7);
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
}

@media screen and (min-width: 769px) {
	.c-h1 {
		padding-top: 1em;
		font-size: 3.25em;
	}
}

.c-h1 span {
	opacity: .7;
	position: relative;
	top: 48px;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}

.c-h1 span.js-active {
	opacity: 1;
	top: 0;
}

.c-h1--translation {
	opacity: 0;
	position: relative;
	top: 20px;
	-webkit-transition: all .4s ease 0s;
	transition: all .4s ease 0s;
	text-align: center;
	margin: -1.5em 0 4em 0;
	font-size: 1em;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: bold;
}

@media screen and (min-width: 769px) {
	.c-h1--translation {
		margin: -2em 0 5em 0;
		font-size: .98em;
	}
}

.js-active.c-h1--translation {
	opacity: 1;
	top: 0;
}

.c-h2 {
	position: absolute;
	text-align: center;
	display: inline-block;
	top: 33%;
	right: 0;
	left: 0;
	margin: auto;
	font-size: 1.7333333333em;
	font-weight: bold;
	letter-spacing: .15em;
	color: #ffffff;
	font-family: "ヒラギノ角ゴ Pro W6", sans-serif;
	font-weight: 700;
}

@media screen and (min-width: 769px) {
	.c-h2 {
		top: 36%;
		font-size: 3.125em;
	}
}

.c-h4 {
	text-align: center;
	margin-bottom: 1em;
	font-size: 1.3333333333em;
	font-weight: bold;
}

@media screen and (min-width: 769px) {
	.c-h4 {
		margin-bottom: 2.2em;
		font-size: 1.25em;
	}
}

.c-h4 span {
	text-align: left;
	display: block;
	padding-top: 1em;
	font-size: 0.8em;
	font-weight: 400;
}

@media screen and (min-width: 769px) {
	.c-h4 span {
		text-align: center;
	}
}

.c-p {
	font-size: 1em;
	margin: 1em 0;
}

/*==============================================
    7-2. COMPONENT BUTTON
==============================================*/
/*!
---
name: ボタン
category:
  - object/component
---

```jade
div(style="position:relative; margin: 3em 0;")
    .c-btn: a(href="#") もっと見る
div(style="position:relative; margin: 3em 0;")
    .c-btn.c-btn--lg: a(href="#") もっと見る
```
*/
.c-btn {
	text-align: center;
	border: 1px solid #000000;
	border-radius: 100px;
}

@media screen and (min-width: 769px) {
	.c-btn {
		width: 352px;
		margin: 0 auto;
	}
}

.c-btn a {
	position: relative;
	cursor: pointer;
	display: block;
	padding: 1.2em 0;
	font-size: 0.8em;
}

.c-btn a::after {
	position: absolute;
	content: '';
	background: transparent url(../../image/arrow-right.png) no-repeat scroll center center;
	background-size: cover;
	width: 7px;
	height: 14px;
	top: 0;
	right: 30px;
	bottom: 0;
	margin: auto;
}

.c-btn--lg {
	width: 100%;
}

.c-btn--lg a {
	padding: 1.2em 0;
	font-size: 0.8em;
}

@media screen and (min-width: 769px) {
	.c-btn--lg a {
		padding: 1.4em 0;
		font-size: 0.875em;
	}
}

.c-btn--entry {
	width: 100%;
	background-color: #00bc22;
	border: none;
}

.c-btn--entry a {
	color: #ffffff;
	padding: 1.2em 0;
	font-size: 0.8em;
}

.c-btn--entry a::after {
	background: transparent url(../../image/arrow-entry.png) no-repeat scroll center center;
	background-size: cover;
}

@media screen and (min-width: 769px) {
	.c-btn--entry a {
		padding: 1.4em 0;
		font-size: 0.875em;
	}
}

.c-btn--pagetop {
	z-index: 10;
	position: fixed;
	display: block;
	width: 40px;
	height: 40px;
	bottom: 1.2em;
	right: 1.4em;
	border-radius: 30px;
}

@media screen and (min-width: 769px) {
	.c-btn--pagetop {
		z-index: 100;
		position: fixed;
		display: block;
		width: 60px;
		height: 60px;
		bottom: 4em;
		right: 4em;
		border-radius: 30px;
	}
}

/*==============================================
    7-X. COMPONENT COMMON
==============================================*/
/*!
---
name: セクション(間隔)
category:
  - object/component
---

```jade
.c-section
    p セクションの間隔テスト
.c-section
    p セクションの間隔テスト
.c-section
    p セクションの間隔テスト
```
*/
.c-section {
	z-index: 1;
	position: relative;
	padding: 4em 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (min-width: 769px) {
	.c-section {
		padding: 4em 0 8em 0;
	}
}

/*==============================================
    7-X. COMPONENT MAIN
==============================================*/
/*!
---
name: メイン(HERO)
category:
  - object/component
---

```jade
a(href=rootPath + "news/index.html") ※こちらのメイン画面をご覧ください

.c-main
    h2.c-h2 テストガイド
    .c-main__background: img(src=rootPath + "news/image/news-main.jpg", alt="")
```
*/
.c-main {
	opacity: 0;
	position: relative;
}

.c-main__background {
	width: 150%;
	margin-left: -30%;
}

@media screen and (min-width: 769px) {
	.c-main__background {
		width: 100%;
		margin-left: 0;
	}
}

/*==============================================
    7-X. COMPONENT FRONTCOVER
==============================================*/
/*!
---
name: 記事一覧
category:
  - object/component
---

```jade
.c-frontcover.t-frontcover
    .l-col.l-col--fw
        .l-col__3
            a(href="detail.html")
                .c-frontcover__image: img(src=rootPath + "news/image/news-image01.jpg", alt="")
                ul.c-frontcover__tags
                    li.c-frontcover__tags__item プレスリリース
                p.c-frontcover__title 『BEE HOUSE 横浜店』がオープン！！
                p.c-frontcover__content “イタリアン×蜂蜜”のマリアージュを愉しむカジュアルダイニング『BEE HOUSE』は、2号店とな…
                p.c-frontcover__date 2018/08/31
        .l-col__3
            a(href="detail.html")
                .c-frontcover__image: img(src=rootPath + "news/image/news-image02.jpg", alt="")
                ul.c-frontcover__tags
                    li.c-frontcover__tags__item ニュース
                    li.c-frontcover__tags__item プレスリリース
                    li.c-frontcover__tags__item インバウンド
                p.c-frontcover__title 『BEE HOUSE 横浜店』がオープン！！
                p.c-frontcover__content “イタリアン×蜂蜜”のマリアージュを愉しむカジュアルダイニング『BEE HOUSE』は、2号店とな…
                p.c-frontcover__date 2018/08/31
        .l-col__3
            a(href="detail.html")
                .c-frontcover__image: img(src=rootPath + "news/image/news-image03.jpg", alt="")
                ul.c-frontcover__tags
                    li.c-frontcover__tags__item ニュース
                p.c-frontcover__title 『BEE HOUSE 横浜店』がオープン！！
                p.c-frontcover__content “イタリアン×蜂蜜”のマリアージュを愉しむカジュアルダイニング『BEE HOUSE』は、2号店とな…
                p.c-frontcover__date 2018/08/31
```
*/
.c-frontcover {
	background-color: #ffffff;
}

.c-frontcover__tags {
	margin: .5em 0;
}

.c-frontcover__tags__item {
	display: inline-block;
	padding-right: .5em;
	font-size: 0.7333333333em;
	color: #00bc22;
}

@media screen and (min-width: 769px) {
	.c-frontcover__tags__item {
		font-size: 0.6875em;
	}
}

.c-frontcover__title {
	margin: 1em 0 .5em 0;
	font-size: 1.0666666667em;
	font-weight: bold;
	line-height: 1.6;
}

@media screen and (min-width: 769px) {
	.c-frontcover__title {
		margin: 1em 0 .5em 0;
		font-size: 1em;
	}
}

.c-frontcover__content {
	margin: 1em 0;
	font-size: 0.8em;
	color: #5c5c5c;
}

@media screen and (min-width: 769px) {
	.c-frontcover__content {
		font-size: 0.75em;
	}
}

.c-frontcover__date {
	margin-bottom: 4em;
	font-size: 0.8em;
	color: #5c5c5c;
}

@media screen and (min-width: 769px) {
	.c-frontcover__date {
		font-size: 0.75em;
	}
}

/*==============================================
    7-X. COMPONENT VALUE
==============================================*/
/*!
---
name: 私たちについて(Our Value)
category:
  - object/component
---

```jade
.c-value
    .c-value__contents
        .c-value__contents__category
            .c-value__contents__category__icon: img(src=rootPath + "image/index-icon01.png", alt="")
            p.c-value__contents__category__name MARKETING
        p.c-value__contents__image.u-hidden-pc: img(src=rootPath + "image/index-value-image01.jpg", alt="")
        p.c-value__contents__title マーケティング
            br.u-hidden-sp
            span （集客力）
        p.c-value__contents__text マーケティングと実店舗が一丸となり、
            br
            |「行ってみたい！」を作り出します。
    .c-value__image.u-hidden-sp: img(src=rootPath + "image/index-value-image01.jpg", alt="")

.c-value.c-value--opposite
    .c-value__contents
        .c-value__contents__category
            .c-value__contents__category__icon: img(src=rootPath + "image/index-icon02.png", alt="")
            p.c-value__contents__category__name HOSPITALITY
        p.c-value__contents__image.u-hidden-pc: img(src=rootPath + "image/index-value-image02.jpg", alt="")
        p.c-value__contents__title ホスピタリティ
            br.u-hidden-sp
            span （おもてなし）
        p.c-value__contents__text ホスピタリティと魅力あるコンテンツで
            br
            |「連れて行きたい！」を作り出します。
    .c-value__image.u-hidden-sp: img(src=rootPath + "image/index-value-image02.jpg", alt="")

.c-value
    .c-value__contents
        .c-value__contents__category
            .c-value__contents__category__icon: img(src=rootPath + "image/index-icon03.png", alt="")
            p.c-value__contents__category__name LEADERS
        p.c-value__contents__image.u-hidden-pc: img(src=rootPath + "image/index-value-image03.jpg", alt="")
        p.c-value__contents__title リーダーの輩出
        p.c-value__contents__text お客様とチームの笑顔のために挑戦し続ける、
            br
            |リーダーを生み出します。
    .c-value__image.u-hidden-sp: img(src=rootPath + "image/index-value-image03.jpg", alt="")
```
*/
.c-value {
	z-index: 1;
	position: relative;
	width: 89.33333333%;
	margin: 0 auto 4em auto;
}

@media screen and (min-width: 769px) {
	.c-value {
		width: 91.66666667%;
		margin: 0 0 6em auto;
	}
}

.c-value--btn {
	position: relative;
	width: 89.33333333%;
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.c-value--btn {
		width: 100%;
	}
}

@media screen and (min-width: 769px) {
	.c-value__contents {
		z-index: 3;
		position: absolute;
		width: 50%;
		top: 2em;
		padding-top: 3em;
	}
}

.c-value__contents__category {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 1.5em;
}

.c-value__contents__category::after {
	position: absolute;
	content: '';
	width: 0;
	height: 1px;
	left: 0;
	background-color: #00bc22;
	-webkit-transition: width 1s ease 0s;
	transition: width 1s ease 0s;
}

@media screen and (min-width: 769px) {
	.c-value__contents__category {
		margin-bottom: 0;
	}
}

.js-active.c-value__contents__category::after {
	width: 100%;
}

.c-value__contents__category__icon {
	z-index: 5;
	position: relative;
	width: 11.3%;
	padding-right: 1em;
	background-color: #ffffff;
}

@media screen and (min-width: 769px) {
	.c-value__contents__category__icon {
		width: 38px;
		padding-right: 1em;
	}
}

.c-value__contents__category__name {
	z-index: 5;
	position: relative;
	padding-right: 1em;
	background-color: #ffffff;
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
}

@media screen and (min-width: 769px) {
	.c-value__contents__category__name {
		padding-right: 10px;
		font-size: 0.9375em;
	}
}

.c-value__contents__title {
	margin: .5em 0 .5em 0;
	font-size: 1.3333333333em;
	font-weight: bold;
}

@media screen and (min-width: 769px) {
	.c-value__contents__title {
		margin: .5em 0 1em 0;
		font-size: 1.75em;
		line-height: 1.4;
	}
}

.c-value__contents__title span {
	font-size: 0.7em;
	font-weight: bold;
}

@media screen and (min-width: 769px) {
	.c-value__contents__title span {
		font-size: 0.6428571429em;
	}
}

.c-value__contents__text {
	font-size: 0.9333333333em;
}

@media screen and (min-width: 769px) {
	.c-value__contents__text {
		font-size: 0.875em;
	}
}

.c-value__image {
	position: relative;
}

@media screen and (min-width: 769px) {
	.c-value__image {
		width: 55%;
		margin-left: auto;
	}
}

@media screen and (min-width: 769px) {
	.c-value--opposite {
		width: 91.66666667%;
		margin: 0 auto 6em 0;
	}
}

@media screen and (min-width: 769px) {
	.c-value--opposite .c-value__image {
		margin: 0 auto 0 0;
	}
}

@media screen and (min-width: 769px) {
	.c-value--opposite .c-value__contents {
		z-index: 3;
		position: absolute;
		width: 30%;
		top: 2em;
		right: 0;
		margin: 0 0 0 auto;
	}
}

@media screen and (min-width: 769px) {
	.c-value--opposite .c-value__contents__category::after {
		z-index: 1;
		position: absolute;
		content: '';
		width: 60%;
		height: 1px;
		left: -64%;
		background-color: #00bc22;
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		-webkit-transition: -webkit-transform 1s ease 0s;
		transition: -webkit-transform 1s ease 0s;
		transition: transform 1s ease 0s;
		transition: transform 1s ease 0s, -webkit-transform 1s ease 0s;
		-webkit-transform-origin: right;
		transform-origin: right;
	}
}

@media screen and (min-width: 769px) {
	.c-value--opposite .js-active.c-value__contents__category::after {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

/*==============================================
    7-X. COMPONENT TABLE
==============================================*/
/*!
---
name: テーブル
category:
  - object/component
---

```jade
.l-frame
    .l-frame--md
        p.c-h4 題名
        .c-table
            table
                //- ============================================================================================================================
                tr
                    th 見出し
                    td 本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン
                //- ============================================================================================================================
                tr
                    th 見出し
                    td 本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン
                //- ============================================================================================================================
                tr
                    th 役員
                    td 
                        .l-col.l-col--fw
                            .c-table__item
                                p.c-table__item__content 代表取締役社長
                            .c-table__item.c-table__item--sub
                                p.c-table__item__content 山田 竜馬（2003年TBI創業）

                            .c-table__item
                                p.c-table__item__content 代表取締役社長
                            .c-table__item.c-table__item--sub
                                p.c-table__item__content 山田 竜馬（2003年TBI創業）

                            .c-table__item
                                p.c-table__item__content 取締役（社外・非常勤）
                            .c-table__item.c-table__item--sub
                                p.c-table__item__content 水谷 謙作
                //- ============================================================================================================================
                tr
                    th 見出し
                    td 本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン
                //- ============================================================================================================================
                tr.c-table__last
                    th 見出し
                    td 
                        p 本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン
                //- ============================================================================================================================

        .t-company--cover
        p.c-h4 題名
        .c-table
            table.c-table--sm
                //- ============================================================================================================================
                tr
                    th 本文
                    td 本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン
                tr
                    th 本文
                    td 本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン
                tr
                    th
                    td 本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン
                tr
                    th 本文
                    td 本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン
                tr.c-table__last
                    th 本文
                    td 本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン本文ほんぶんホンブン
                //- ============================================================================================================================
```
*/
.c-table--text {
	margin: 1em 0;
	font-size: 1.0666666667em;
	line-height: 1.6;
}

@media screen and (min-width: 769px) {
	.c-table--text {
		margin: 0 0 1em 0;
		line-height: 2.0;
	}
}

.c-table--accent {
	color: #00bc22;
	margin: 1.5em 0;
	font-size: 1.0666666667em;
	font-family: "ヒラギノ角ゴ Pro W6", sans-serif;
	font-weight: 700;
}

@media screen and (min-width: 769px) {
	.c-table--accent {
		margin: 2em 0 1em 0;
	}
}

.c-table {
	width: 93.4%;
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.c-table {
		width: 100%;
		margin: 0;
	}
}

.c-table table {
	width: 100%;
	table-layout: fixed;
}

.c-table tr {
	display: inline-block;
	width: 100%;
	padding: 2em 0;
	border-top: 1px solid #cccccc;
	border-collapse: separate;
}

@media screen and (min-width: 769px) {
	.c-table tr {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}

.c-table__last {
	border-bottom: 1px solid #cccccc;
}

.c-table tr th,
.c-table tr td {
	display: block;
}

@media screen and (min-width: 769px) {
	.c-table tr th,
	.c-table tr td {
		display: inline-block;
	}
}

.c-table tr th {
	position: relative;
	margin-bottom: 1em;
	padding-left: 12px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "ヒラギノ角ゴ Pro W6", sans-serif;
	font-weight: 700;
}

.c-table tr th::before {
	position: absolute;
	content: '';
	width: 3px;
	height: 14px;
	top: 4px;
	left: 0;
	background-color: #00bc22;
}

@media screen and (min-width: 769px) {
	.c-table tr th {
		width: 21.3%;
		margin-bottom: 0;
		line-height: 2.0;
	}
	.c-table tr th::before {
		width: 3px;
		height: 18px;
		top: 6px;
	}
}

@media screen and (min-width: 769px) {
	.c-table table tr td {
		width: 78.7%;
	}
}

.c-table tr td a {
	text-decoration: underline;
}

.c-table__box {
	width: 100%;
	padding: 1.5em;
	border: 1px dotted #000000;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (min-width: 769px) {
	.c-table__box {
		padding: 1.5em 2em;
	}
}

.c-table__box .t-accent {
	margin: 1em 0;
}

.c-table__box__text {
	font-size: 0.9333333333em;
	line-height: 1.6;
}

@media screen and (min-width: 769px) {
	.c-table__box__text {
		font-size: 1em;
		line-height: 2.0;
	}
}

.c-table__last {
	margin-bottom: 4em;
}

@media screen and (min-width: 769px) {
	.c-table__item {
		width: 50%;
		margin-bottom: 1.5em;
	}
}

.c-table__item--sub {
	margin-bottom: 1.5em;
}

@media screen and (min-width: 769px) {
	.c-table__item--sub {
		margin-bottom: 1.5em;
	}
}

.c-table__map {
	width: 100%;
	margin-top: 1.5em;
}

.c-table__map iframe {
	width: 100%;
	height: 200px;
}

@media screen and (min-width: 769px) {
	.c-table__map iframe {
		height: 400px;
	}
}

.c-table--sm tr th {
	padding-left: 0;
	font-size: 0.875em;
	font-family: "ヒラギノ角ゴ Pro W6", sans-serif;
	font-weight: 700;
}

.c-table--sm tr th::before {
	display: none;
}

.c-table--sm tr td {
	font-size: 0.875em;
}

/*==============================================
    7-X. COMPONENT XXXXXX
==============================================*/
/*!
---
name: Canvas - 波のアニメーション
category:
  - object/component
---

```jade
a(href=rootPath + "news/index.html") ※こちらのメイン画面をご覧ください

// コード
// .c-main
//     h2.c-h2 !{title}
//     .c-main__background: img(src=rootPath + "news/image/news-main.jpg", alt="")
//     .c-wave: canvas#canvaswave
```
*/
.c-wave {
	z-index: 2;
	position: absolute;
	width: 100%;
	bottom: -40px;
}

@media screen and (min-width: 769px) {
	.c-wave {
		bottom: -80px;
	}
}

.c-wave #canvaswave {
	width: 100% !important;
	height: 120px !important;
}

@media screen and (min-width: 769px) {
	.c-wave #canvaswave {
		width: 100% !important;
		height: 200px !important;
	}
}

/*==============================================

    ?. UTILITY

==============================================*/
/*!
---
name: 非表示
category:
  - object/utility
---

```jade
p 常時
    span.u-hidden 非表示
    |になります

p PCのとき
    span.u-hidden-pc 非表示
    |になります

p SPのとき
    span.u-hidden-sp 非表示
    |になります
```
*/
.u-hidden {
	display: none;
}

@media (max-width: 768px) {
	.u-hidden-sp {
		display: none;
	}

	.l-limit {
		margin-top: 35px;
	}
}

@media (min-width: 769px) {
	.u-hidden-pc {
		display: none;
	}
}

/*!
---
name: テキスト位置
category:
  - object/utility
---

```jade
p.u-left 左寄せ
p.u-center 中央寄せ
p.u-right 右寄せ
```
*/
.u-left {
	text-align: left;
}

.u-center {
	text-align: center;
}

.u-right {
	text-align: right;
}

/*!
---
name: テキストカラー
category:
  - object/utility
---

```jade
p.u-red テキストが赤色になる
p.u-blue テキストが青色になる
p.u-green テキストが緑色になる
p.u-orenge テキストがオレンジ色になる
```
*/
.u-red {
	color: #E38692;
}

.u-blue {
	color: #6EB7DB;
}

.u-green {
	color: #64C99B;
}

.u-orenge {
	color: #EDA184;
}

/*!
---
name: 背景カラー
category:
  - object/utility
---

```jade
.u-bg--red 背景が赤色になる
.u-bg--blue 背景が青色になる
.u-bg--green 背景が緑色になる
.u-bg--orange 背景がオレンジ色になる
```
*/
.u-bg--red {
	background-color: #E38692;
}

.u-bg--blue {
	background-color: #6EB7DB;
}

.u-bg--green {
	background-color: #64C99B;
}

.u-bg--orange {
	background-color: #EDA184;
}

/*==============================================

    11. THEME STORE

==============================================*/
/*==============================================
    11-0. STORE COMMON
==============================================*/
/*==============================================
    11-1. STORE PICKUP
==============================================*/
.t-pickup {
	padding-top: 0;
}

@media screen and (min-width: 769px) {
	.t-pickup {
		padding-top: 1em;
	}
}

.t-pickup--cover {
	width: 93.4%;
	margin: 4em auto 0 auto;
}

@media screen and (min-width: 769px) {
	.t-pickup--cover {
		position: relative;
		width: auto;
		margin-top: 5em 0 0 0;
	}
	.t-pickup--cover::after {
		content: "";
		display: block;
		width: 30.7%;
	}
}

.t-pickup__item {
	position: relative;
	margin-bottom: 3em;
}

@media screen and (min-width: 769px) {
	.t-pickup__item {
		cursor: pointer;
		width: 30.7%;
		margin-bottom: 3em;
		-webkit-transition: opacity .4s ease 0s;
		transition: opacity .4s ease 0s;
	}
	.t-pickup__item:hover {
		opacity: .9;
	}
}

.t-pickup__item__image[data-has="stores"] {
	position: relative;
}

@media screen and (min-width: 769px) {
	.t-pickup__item__image[data-has="stores"]::before {
		position: absolute;
		content: '';
		width: 100%;
		height: 2px;
		bottom: 0;
		margin: auto;
		background-color: #00bc22;
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		-webkit-transition: -webkit-transform .4s ease .1s;
		transition: -webkit-transform .4s ease .1s;
		transition: transform .4s ease .1s;
		transition: transform .4s ease .1s, -webkit-transform .4s ease .1s;
	}
	.t-pickup__item__image[data-has="stores"]::before {
		left: 0;
		-webkit-transform-origin: left;
		transform-origin: left;
	}
	.t-pickup__item__image[data-has="stores"]:hover::before {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

.t-pickup__item__place {
	position: absolute;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	padding: 1em 2em;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #f1f3fa;
}

@media screen and (min-width: 769px) {
	.t-pickup__item__place {
		padding: 1em 2em;
	}
}

.t-pickup__item__place li {
	width: 50%;
	margin: .3em 0;
}

.t-pickup__item__place li a {
	font-size: 0.8125em;
	text-decoration: underline;
}

.t-pickup__item__name {
	text-align: center;
	margin: 1.5em 0 1em 0;
	font-size: 1.0666666667em;
	font-family: "ヒラギノ角ゴ Pro W6", sans-serif;
	font-weight: 700;
}

@media screen and (min-width: 769px) {
	.t-pickup__item__name {
		margin: 1.5em 0 1em 0;
		font-size: 1em;
	}
}

.t-pickup__item__content {
	font-size: 0.8666666667em;
	line-height: 1.6;
}

@media screen and (min-width: 769px) {
	.t-pickup__item__content {
		font-size: 0.8125em;
	}
}

/*==============================================
    11-2. STORE LIST
==============================================*/
.t-list {
	padding-top: 2em;
}

@media screen and (min-width: 769px) {
	.t-list {
		padding-top: 8em;
	}
}

@media screen and (min-width: 769px) {
	.t-list--margin {
		margin: 4em 0;
	}
}

.t-list__toc {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.t-list__toc__item {
	text-align: center;
	width: 50%;
	margin-bottom: 2em;
}

@media screen and (min-width: 769px) {
	.t-list__toc__item {
		width: auto;
	}
}

.t-list__toc__item a {
	position: relative;
	font-size: 1.2em;
	font-family: "ヒラギノ角ゴ Pro W6", sans-serif;
	font-weight: 700;
}

.t-list__toc__item a::after {
	position: absolute;
	content: '';
	width: 14px;
	height: 7px;
	top: 6px;
	bottom: 0;
	margin-left: 16px;
	background: transparent url(../../store/image/store-arrow.png) no-repeat scroll center center;
	background-size: cover;
}

@media screen and (min-width: 769px) {
	.t-list__toc__item a {
		font-size: 1.125em;
	}
	.t-list__toc__item a::after {
		opacity: 0;
		position: absolute;
		content: '';
		width: 14px;
		height: 7px;
		right: 0;
		left: 0;
		bottom: -20px;
		margin: auto;
		background: transparent url(../../store/image/store-arrow.png) no-repeat scroll center center;
		background-size: cover;
		-webkit-transition: all .4s ease 0s;
		transition: all .4s ease 0s;
	}
	.t-list__toc__item a:hover::after {
		opacity: 1;
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
}

.t-list__heading {
	text-align: center;
	margin: 2em 0;
	font-size: 1.3333333333em;
	font-weight: bold;
}

@media screen and (min-width: 769px) {
	.t-list__heading {
		margin: 3em 0 2.5em 0;
		font-size: 1.5em;
	}
}

.t-list__area {
	text-align: center;
	margin: 2em 0;
	font-size: 1.0666666667em;
	font-weight: bold;
}

@media screen and (min-width: 769px) {
	.t-list__area {
		text-align: left;
		width: 10%;
		margin: -16px 0 0 0;
		font-size: 1.25em;
	}
}

.t-list__content {
	width: 100%;
	margin-bottom: 4em;
}

@media screen and (min-width: 769px) {
	.t-list__content {
		width: 90%;
	}
}

.t-list__content tr {
	display: inline-block;
	width: 100%;
	padding: 1em 0;
	border-bottom: 1px solid #000000;
}

@media screen and (min-width: 769px) {
	.t-list__content tr {
		width: 100%;
		padding: 1.6em 0;
	}
}

.t-list__content tr:nth-child(1) {
	border-top: 1px solid #00bc22;
}

.t-list__content tr th,
.t-list__content tr td {
	display: block;
}

.t-list__content tr th {
	margin-bottom: 1em;
	font-size: 1.0666666667em;
	font-family: "ヒラギノ角ゴ Pro W6", sans-serif;
	font-weight: 700;
}

.map_link {
	margin: 30px auto 60px;
}
@media screen and (min-width: 769px) {
	.t-list__content tr th {
		margin-bottom: .5em;
		font-size: 1em;
	}
}

.t-list__content tr td {
	font-size: 0.9333333333em;
	font-family: "ヒラギノ角ゴ Pro W3", sans-serif;
	font-weight: 400;
}

@media screen and (min-width: 769px) {
	.t-list__content tr td {
		font-size: 0.875em;
	}
}

/*==============================================
    11-X. STORE LYAOUT & COMPONENT(PREDEFINED)
==============================================*/
