@charset "UTF-8";


/*ロード画面（最初の表示）
---------------------------------------------------------*/
.loading {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
.loading div {
	position: fixed;
	z-index: 9999;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 80%;
	max-width:800px;
	text-align: center;
	display: none;
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.loading div {
	width: 50%;
	max-width: 309px;
}
}



/*メインイメージ
---------------------------------------------------------*/
.m_img_area::before {
background: -moz-linear-gradient(top,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
background: -webkit-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );
	opacity: 0.5;
}
.m_img_area img {
	display: block;
	margin: auto;
}
/*メインイメージスライダー*/
.m_img_area .m_img {
	position: relative;
	z-index: 0;
}
/*下のグラデ
.m_img_area .m_img::before {
	content: "";	
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 400px;
	left: 0;
	bottom: 0;
background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=0 );
}*/
.m_img_area .swiper-wrapper {
	will-change: transform;
	-webkit-backface-visibility: hidden;
}
.m_img_area .main_slider {
	/*height: 100vh;*/
	transition: opacity 0.6s ease, transform 0.3s ease;
}
.m_img_area .main_slider .slide {
	width: 100%;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	will-change: transform;
}
.m_img_area .main_slider .slide_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: left center;
	background-size: cover;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	will-change: transform;
	animation: bgAnime 30s infinite linear;
}
.m_img_area .main_slider .slide_bg.pc_img {
	display: block;
}
.m_img_area .main_slider .slide_bg.sp_img {
	display: none;
}
.m_img_area .main_slider .swiper-slide-next .slide_bg {
	animation: none;
}
@keyframes bgAnime {
0% {
	background-position: left center;
}
100% {
	background-position: right center;
}
}

/*ロゴ*/
.m_img_area .copy_logo {
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-55%);
	transform: translateY(-55%);
	width: 50%;
	margin: auto;
	opacity: 0;
}
.m_img_area.anime_on .copy_logo {
    animation-name: copyAnime;
    animation-duration: 4s;
    animation-timing-function: ease;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes copyAnime {
0% {
	opacity:0;
}
100% {
	opacity:1;
}
}

/*グランドオープン*/
.m_img_area .open_nagoya .tb_pc {
	position: absolute;
	z-index: 1;
	left: 3%;
	bottom: 6.5%;
	width: 60%;
	max-width: 762px;
}

/*＋Grace nagoya リンク*/
.m_img_area .link_nagoya {
	position: absolute;
	z-index: 2;
	right: 0;
	top: 50%;
	-webkit-transform: translate(50%, -50%) rotate(90deg);
	transform: translate(50%, -50%) rotate(90deg);
	transform-origin: 50% 0;
}
.m_img_area .link_nagoya a {
	display: block;
	width: 270px;
	box-sizing: border-box;
	padding: 25px 0;
	padding-right: 2.5em;
	position: relative;
	border-bottom: solid 1px rgba(255,255,255,0.5);
}
.m_img_area .link_nagoya.com_arrow .icon {
	width: 2.0em;
	height: 2.0em;
	position: absolute;
	right: 1.5em;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-90deg);
	transform: translateY(-50%) rotate(-90deg);
}
.m_img_area .link_nagoya a > img {
	height: 16px;
}
/*m_side*/
.m_img_area .m_side {
	position: absolute;
	z-index: 1;
	right: 3%;
	bottom: 5%;
	width: 35%;
	max-width: 340px;
}
.m_img_area .m_business {
	margin-bottom: 5px;
}
.m_img_area .m_business a {
	position: relative;
	display: block;
	color: #fafbfc;
	text-align: left;
	font-size: 112%;
	letter-spacing: .1em;
	line-height: 1.5;
	background: rgba(46,51,54,0.85);
	box-sizing: border-box;
	padding: 1em 11%;
}
.m_img_area .m_business a::before {
	font-family: 'fontello';
	content: '\e800';
	color: #8f9396;
	font-size: 150%;
	letter-spacing: normal;
	line-height: 1;
	position: absolute;
	right: .5em;
	top: 50%;
	transform: translateY(-50%);
}
.m_img_area .m_business a span {
	position: relative;
	display: inline-block;
}
.m_img_area .m_business a span::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -2px;
	background: #8f9396;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
}
.m_img_area .m_business:hover a span::after {
	transform-origin: left top;
	transform: scale(1, 1);
}
/*TOPICS*/
.m_img_area .m_topics {
	position: relative;
	background: rgba(46,51,54,0.85);
	box-sizing: border-box;
	padding: 3.0em 11% 2.5em;
	text-align: left;
	font-size: 65%;
	line-height: 1.2em;
}
.m_img_area .m_topics,
.m_img_area .m_topics a {
	color: #fafbfc;
}
.m_img_area .m_topics .topi_box {
	position: relative;
	z-index: 0;
   display: block;	/* 初期表示 */
}
/* 閉じるボタン*/
.m_topics .checkbox {
    display: none;
}
.m_img_area .m_topics .close_btn {
	text-align: right;
	position: absolute;
	z-index: 1;
	right: 1.5em;
	top: 1.5em;
}
.m_img_area .m_topics .close_btn label {
	display: inline-block;
	letter-spacing: .3em;
	padding-right: 3.0em;
	cursor: pointer;
	opacity: 0.5;
}
.m_img_area .m_topics .close_btn label::before {
	font-family: 'fontello';
	content: '\e802';
	font-size: 180%;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
/* ×をクリックした時 */
.m_img_area .m_topics #topi_close:checked ~ .topi_box {
   display: none;
}
.m_img_area .m_topics #topi_close:checked ~ .close_btn label::before {
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.m_img_area .m_topics .store {
	letter-spacing: .28em;
	display: -webkit-flex;
	display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.m_img_area .m_topics .store li::after {
	content: ",";
	margin-right: .2em;
}
.m_img_area .m_topics .store li:last-child::after {
	display: none;
}
.m_img_area .m_topics dl {
	position: relative;
	margin-top: 1.0em;
	padding-top: 1.8em;
}
.m_img_area .m_topics dl::before {
	content: "";
	position: absolute;
	width: 2.0em;
	height: 1px;
	background: rgba(250,251,252,0.4);
	left: 0;
	top: 0;
}
.m_img_area .m_topics dt {
	letter-spacing: .3em;
	margin-bottom: .8em;
}
.m_img_area .m_topics .com_line_link {
	font-size: 140%;
	letter-spacing: .08em;
	line-height: 1.4em;
	padding-left: 1.2em;
}
.m_img_area .m_topics .com_line_link::before {
	color: #8f9396;
	font-size: 100%;
}
.m_img_area .m_topics .com_line_link a::after {
	bottom: -.2em;
}
.m_img_area .m_topics dl:hover .com_line_link a::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/*m_copy*/
.m_copy{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 80%;
	max-width: 1050px;
}

/* 高さ770px以下
------------------------------------------*/
@media only screen and (min-width: 960px) and (max-height: 770px) {
.m_img_area .link_nagoya {
    top: 40%;
}
}
/* 1100px以下
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1100px) {
.m_img_area .m_side {
	right: 0;
}
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
/*グランドオープン*/
.m_img_area .open_nagoya .tb_pc {
	left: 2%;
}
/*＋Grace nagoya リンク*/
.m_img_area .link_nagoya a {
	padding-top: 15px;
	padding-bottom: 15px;
}
/*TOPPICS*/
.m_img_area .m_topics .close_btn {
	right: 1.0em;
	top: 1.0em;
}
.m_img_area .m_topics .store {
	letter-spacing: .2em;
}
.m_img_area .m_topics dd {
	letter-spacing: .05em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
/*メインイメージスライダー*/
.m_img_area .main_slider .slide_bg.pc_img {
	display: none;
}
.m_img_area .main_slider .slide_bg.sp_img {
	display: block;
}
/*ロゴ*/
.m_img_area .copy_logo {
	width: 80%;
	-webkit-transform: translateY(-85%);
	transform: translateY(-85%);
}

/*グランドオープン*/
/*.m_img_area .open_nagoya {
	position: absolute;
	width: 65%;
	left: 0;
	right: 0;
	margin: auto;
	top: 50%;
	-webkit-transform: translateY(30%);
	transform: translateY(30%);
}
.m_img_area .open_nagoya .tb_pc {
	position: static;
	width: 100%;
	max-width: 100%;
}*/

/*＋Grace nagoya リンク*/
/*.m_img_area .link_nagoya {
	position: static;
	-webkit-transform: none;
	transform: none;
	width: 80%;
	margin: 8% auto 0;
}
.m_img_area .link_nagoya a {
	display: block;
	width: 100%;
	padding: .8em 0;
	padding-right: 1.5em;
	border-bottom: none;
	border-top: solid 1px rgba(255,255,255,0.5);
}
.m_img_area .link_nagoya.com_arrow .icon {
	width: 1.5em;
	height: 1.5em;
	right: 1.0em;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.m_img_area .link_nagoya a > img {
	height: .7em;
}*/
	
/*.m_img_area .link_nagoya {
	top: 50%;	上下の調整
}*/
.m_img_area .link_nagoya a {
	width: 13em;
	padding: 1.0em 0;
	padding-right: 2.0em;
}
.m_img_area .link_nagoya.com_arrow .icon {
	width: 1.5em;
	height: 1.5em;
	right: 1.0em;
}
.m_img_area .link_nagoya a > img {
	height: .8em;
}	
	
.m_img_area .m_side {
	right: auto;
	left: 0;
	bottom: 0;
	width: 90%;
	max-width: 100%;
}
.m_img_area .m_business {
	text-align: left;
	max-width: max-content;
}
.m_img_area .m_business a {
	display: inline-block;
	font-size: 100%;
	white-space: nowrap;
	padding: .8em 2.6em .8em 1.2em;
	background-color: transparent;
}
.m_img_area .m_business a::before {
    color: rgba(255,255,255,0.6);
}
.m_img_area .m_business a span {
    text-shadow: 0 0 8px rgba(0,0,0,1);
}
/*TOPICS*/
.m_img_area .m_topics {
	font-size: 75%;
	padding: 1.5em 5%;
}
.m_img_area .m_topics .close_btn {
	right: 1em;
	top: 1.3em;
}	
.m_img_area .m_topics .close_btn label {
	letter-spacing: .2em;
	padding-right: 2em;
}
.m_img_area .m_topics .close_btn label::before {
	font-size: 120%;
}
.m_img_area .m_topics .store {
	letter-spacing: .1em;
}
.m_img_area .m_topics dl {
	margin-top: .6em;
	padding-top: 1.0em;
}
.m_img_area .m_topics dt {
	letter-spacing: .2em;
	margin-bottom: .5em;
}
.m_img_area .m_topics dd.com_line_link {
	font-size: 120%;
	letter-spacing: normal;
}
	
/*m_copy*/
.m_copy{
	width: 70%;
}
}



/*TOP共通
---------------------------------------------------------*/
/*トップ共通タイトル*/
.top_index .ft_modern {
	font-size: 490%;
	letter-spacing: .1em;
	line-height: 1.2em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
/*トップ共通タイトル*/
.top_index .ft_modern {
	font-size: 380%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
/*トップ共通タイトル*/
.top_index .ft_modern {
	font-size: 280%;
	letter-spacing: .1em;
}
}



/*キャンペーン
---------------------------------------------------------*/
.campaign {
	width: 100%;
	position: relative;
}
.campaign::before {
	content: "";	/*背景グラデ*/
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 61%;
	left: 0;
	top: 0;
background: -moz-linear-gradient(top,  rgba(232,215,167,0) 0%, rgba(181,161,101,1) 100%);
background: -webkit-linear-gradient(top,  rgba(232,215,167,0) 0%,rgba(181,161,101,1) 100%);
background: linear-gradient(to bottom,  rgba(232,215,167,0) 0%,rgba(181,161,101,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00e8d7a7', endColorstr='#b5a165',GradientType=0 );
}
.campaign .in_box {
	width: 94%;
	box-sizing: border-box;
	padding: 70px 0 80px;
	padding-right: 6%;
	margin-left: auto;
	margin-right: 0;
	text-align: left;
	overflow: hidden;
}
.campaign .lead {
	font-size: 130%;
	letter-spacing: .05em;
	line-height: 1.6em;
	margin-top: .2em;
	margin-bottom: 40px;
}

.campaign .camp_slider {
	width: 100%;
	height: 100%;
	overflow: visible;
	z-index: 1;
}
.campaign .camp_slider .swiper-wrapper {
	margin-bottom: 70px;
}
.campaign .camp_slider .swiper-slide {
	width: 80%;
	max-width: 750px;
	margin-right: 3% !important;
}
.campaign .camp_slider .bnr_img {
	box-shadow: 6px 0px 20px 0px rgba(0,0,0,0.3);
}
.campaign .camp_slider .com_txt_link2 {
	margin-top: 30px;
}
.campaign .camp_slider .swiper-slide:hover .com_txt_link2 .com_arrow .icon::before {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.campaign .camp_slider .swiper-slide:hover .com_txt_link2 .com_arrow .icon::after {
	opacity: 1;
}
/*スクロールバー、ボタン*/
.campaign .camp_slider .swiper-scrollbar {
	width: calc(97% - 300px);
}
.campaign .camp_slider .slide_control {
	position: absolute;
	width: 300px;
	right: 0;
	bottom: 0;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
	display: -webkit-flex;
	display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}
.campaign .camp_slider .slide_control .scl_pre_next {
	width: 20%;
}
/*一覧リンク*/
.campaign .camp_slider .slide_control .com_txt_link {
	text-align: right;
}

/* 1300px以下
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1300px) {
.campaign .in_box {
	width: 97%;
	padding-right: 3%;
}
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.campaign .in_box {
	padding-top: 6%;
	padding-bottom: 8%;
}
.campaign .lead {
	margin-bottom: 4%;
}

.campaign .camp_slider .swiper-wrapper {
	margin-bottom: 6%;
}	
.campaign .camp_slider .com_txt_link2 {
	margin-top: 3%;
}
/*スクロールバー、ボタン*/
.campaign .camp_slider .swiper-scrollbar {
	width: calc(97% - 220px);
}
.campaign .camp_slider .slide_control {
	width: 220px;
}
.campaign .camp_slider .slide_control .scl_pre_next {
	width: 40px;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.campaign::before {
	height: 80vw;	/*背景グラデ*/
}
.campaign .in_box {
	width: 96%;
	padding: 10% 0;
	padding-right: 4%;
}
.campaign .lead {
	font-size: 90%;
	letter-spacing: .05em;
	margin-bottom: 10%;
}

.campaign .camp_slider .swiper-wrapper {
	margin-bottom: 10%;
}
.campaign .camp_slider .swiper-slide {
	width: 80%;
	margin-right: 6% !important;
}
.campaign .camp_slider .com_txt_link2 {
	margin-top: 1.5em;
}
/*スクロールバー、ボタン*/
.campaign .camp_slider .slide_control {
	position: relative;
	width: 100%;
	right: auto;
	bottom: auto;
	-webkit-transform: none;
	transform: none;
	display: block;
}
/*リンクテキスト2*/
.campaign .com_txt_link2 {
	padding-left: 2.6em;
	padding-right: 0;
}
.campaign .com_txt_link2 .com_arrow .icon {
	left: 0;
	right: auto;
}
.com_txt_link2 dd.ft_modern {
	font-size: 60%;
	letter-spacing: .15em;
}
}



/*LINE・インスタグラム
---------------------------------------------------------*/
.sns_box {
	margin-bottom: 90px;
}
.sns_box dt {
	font-size: 130%;
	letter-spacing: .08em;
	line-height: 1.2em;
	margin-bottom: 30px;
}
.sns_box dt .ft_modern {
	font-size: 120%;
	letter-spacing: .08em;
	line-height: 1.2em;
}
.sns_box dd ul {
	display: -webkit-flex;
	display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.sns_box dd li {
	width: 33.3333%;
	max-width: 410px;
	font-size: 115%;
	letter-spacing: normal;
}
.sns_box dd li a {
	display: inline-block;
	padding-left: 24%;
	position: relative;
	text-align: left;
}
.sns_box dd li a::before {
	content: "";	/*アイコン*/
	position: absolute;
	width: 4.0em;
	height: 4.0em;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.sns_box dd li.link_line a::before {background-image: url("../images/line@2x.png");}
.sns_box dd li.link_inst_ig a::before {background-image: url("../images/top/inst_bnr1@2x.png");}
.sns_box dd li.link_line_gn a::before {background-image: url("../images/top/inst_bnr2@2x.png");}
.sns_box dd li span {
	display: block;
	font-size: 80%;
	letter-spacing: .2em;
	line-height: 1.0em;
}
.sns_box dd li span.ft_modern {
	font-size: 85%;
	letter-spacing: .12em;
	line-height: 1.2em;
	padding: .5em 0;
	padding-left: 2.0em;
	background: url("../images/inst.png") no-repeat left center;
	background-size: 1.4em auto;
}
.sns_box dd li.link_line span {
	display: inline-block;
	position: relative;
	padding-right: 2.3em;
}
.sns_box dd li.link_inst_ig a,
.sns_box dd li.link_line_gn a {
	padding-right: 1.8em;
}
.sns_box dd li.link_line span::after,
.sns_box dd li.link_inst_ig a::after,
.sns_box dd li.link_line_gn a::after {
	font-family: 'fontello';
	content: '\e801';
	font-size: 1.3rem;
	color: #8f9396;
	position: absolute;
	right: 0;
	bottom: -.05em;
}
.sns_box dd li.link_line:hover span::after,
.sns_box dd li.link_inst_ig:hover a::after,
.sns_box dd li.link_line_gn:hover a::after {
    animation-name: arrowAnime;
    animation-duration: .6s;
    animation-timing-function: ease;
	animation-fill-mode: forwards;
}

/* 1200px以下
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1200px) {
.sns_box dd li {
	font-size: 100%;
}
.sns_box dd li a {
	padding-left: 20%;
	position: relative;
	text-align: left;
}
.sns_box dd li a::before {
	width: 5.2vw;	/*アイコン*/
	height: 5.2vw;
}
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.sns_box {
	margin-bottom: 5%;
}
.sns_box dt {
	text-align: center;
	margin-bottom: 3%;
}
.sns_box dd li {
	font-size: 100%;
	text-align: center;
}
.sns_box dd li a {
	padding-left: 0;
	padding-top: 5.0em;
}
.sns_box dd li a::before {
	width: 100%;	/*アイコン*/
	height: 4.5em;
	left: 0;
	top: 0;
	-webkit-transform: none;
	transform: none;
}
.sns_box dd li span {
	font-size: 95%;
	letter-spacing: .1em;
}
.sns_box dd li span.ft_modern {
	font-size: 100%;
	letter-spacing: .1em;
	padding: .3em 0;
	padding-left: 2.0em;
}
.sns_box dd li.link_inst_ig a,
.sns_box dd li.link_line_gn a {
	padding-right: 2.2em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.sns_box {
	border-top: solid 1px #d9d9d9;
	padding-top: 6%;
	margin-bottom: 8%;
}
.sns_box dt {
	/*text-align: center;*/
	margin-bottom: 0;
}
.sns_box dd ul {
	display: block;
	padding-left: 3%;
}
.sns_box dd li {
	width: 100%;
	max-width: 100%;
	margin: 1.0em auto 0;
	font-size: 105%;
}
.sns_box dd li a {
	padding-left: 20%;
}
.sns_box dd li a::before {
	width: 3.2em;	/*アイコン*/
	height: 3.2em;
}
.sns_box dd li span {
	font-size: 90%;
	letter-spacing: .1em;
}
.sns_box dd li span.ft_modern {
	font-size: 100%;
	letter-spacing: .08em;
	padding: .2em 0;
	padding-left: 2.0em;
}
}



/*CM
---------------------------------------------------------*/
.cm_box {
	background: #999491;
	padding: 80px 0;
	position: relative;
}
.cm_box.cm1::before {
	content: "";
	position: absolute;
	z-index: 0;
	width: calc(50% - 90px);
	height: 100%;
	right: 0;
	top: 0;
	background: url("../images/top/cm_bg@2x.jpg") repeat-x left center;
	background-size: auto 100%;
}
.cm_box .w1300 {
	position: relative;
	z-index: 1;
}
.cm_box .w1300 h2 {
	color: #fafbfc;
	font-size: 120%;
	letter-spacing: .28em;
	line-height: 1.2em;
	position: absolute;
	left: 3.5%;
	top: 0;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	transform-origin: 0 0;
}
.cm_box ul {
	display: -webkit-flex;
	display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.cm_box ul li {
	width: 49%;
	max-width: 600px;
	position: relative;
}
.cm_box ul li::before {
	content: "";	/* 高さ */
	display: block;
	padding-top: 56.25%;
}
.cm_box ul iframe {
	display: block;
	width: 100% !important;
	height:  100% !important;
	position: absolute;
	left: 0;
	top: 0;
}
.cm_box.cm3 .w1300 {
	max-width: 1700px;
}
.cm_box.cm3 .com_mgn_left {
	max-width: 1650px;
}
.cm_box.cm3 ul li {
	width: 32%;
}

/* 1500px以下
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1500px) {
.cm_box.cm1::before {
	width: 44%;
}
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.cm_box {
	padding: 6% 0;
}
.cm_box .w1300 h2 {
	left: 4.5%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.cm_box {
	padding: 6% 0 8%;
}
.cm_box.cm1::before {
	display: none;
}
.cm_box .w1300 h2 {
	text-align: center;
	letter-spacing: .15em;
	margin-bottom: 6%;
	position: static;
	-webkit-transform: none;
	transform: none;
}
.cm_box ul {
	display: block;
}
.cm_box ul li {
	width: 100% !important;
	max-width: 100%;
	margin-bottom: 6%;
}
.cm_box ul li:last-child {
	margin-bottom: 0;
}
}



/*ブランド（ギャラリー）
---------------------------------------------------------*/
.brand {
	padding: 90px 0;
}
.brand .top_index {
	display: -webkit-flex;
	display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.brand .top_index p {
	margin-left: 2%;
}
.brand .lead {
	margin: 20px 0 60px;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.brand {
	padding: 8% 0;
}
.brand .lead {
	margin: 2% 0 4%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.brand {
	padding: 10% 0 12%;
}
.brand .top_index p {
	font-size: 90%;
	letter-spacing: .15em;
	margin-left: 3%;
}
.brand .lead {
	letter-spacing: .05em;
	margin: .2em 0 10%;
	font-size: 90%;
}
}



/*ブランドロゴ
---------------------------------------------------------*/
.brand_logo .w1200 {
	padding-top: 60px;
	padding-bottom: 60px;
	text-align: center;
}
.brand_logo .lead {
	font-size: 130%;
	letter-spacing: .08em;
	line-height: 1.6em;
	margin-bottom: 30px;
}
.brand_logo .com_txt_link {
	padding-top: 30px;
}

.brand_logo .logo_list {
	display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.brand_logo .logo_list li {
	width: 16%;
	margin-right: 0.8%;
	margin-top: 0.8%;
	background: #fff;
	opacity: 0;
}
.brand_logo .logo_list li:nth-child(6n),
.brand_logo .logo_list li:last-child {
	margin-right: 0;
}
.brand_logo .logo_list li:nth-child(-n+6) {
	margin-top: 0;
}
.brand_logo .swiper-slide-active .logo_list li {
    animation-name: bLogoAnime;
    animation-duration: 1s;
    animation-timing-function: ease;
	animation-fill-mode: forwards;
	opacity: 0;
}
.brand_logo .swiper-slide-active .logo_list li:nth-child(1) {animation-delay: 1.0s;}
.brand_logo .swiper-slide-active .logo_list li:nth-child(2) {animation-delay: 1.1s;}
.brand_logo .swiper-slide-active .logo_list li:nth-child(3) {animation-delay: 1.2s;}
.brand_logo .swiper-slide-active .logo_list li:nth-child(4) {animation-delay: 1.3s;}
.brand_logo .swiper-slide-active .logo_list li:nth-child(5) {animation-delay: 1.4s;}
.brand_logo .swiper-slide-active .logo_list li:nth-child(6) {animation-delay: 1.5s;}
.brand_logo .swiper-slide-active .logo_list li:nth-child(7) {animation-delay: 1.6s;}
.brand_logo .swiper-slide-active .logo_list li:nth-child(8) {animation-delay: 1.7s;}
.brand_logo .swiper-slide-active .logo_list li:nth-child(9) {animation-delay: 1.8s;}
.brand_logo .swiper-slide-active .logo_list li:nth-child(10) {animation-delay: 1.9s;}
.brand_logo .swiper-slide-active .logo_list li:nth-child(11) {animation-delay: 2.0s;}
.brand_logo .swiper-slide-active .logo_list li:nth-child(12) {animation-delay: 2.1s;}
@keyframes bLogoAnime {
0% {
	opacity:0;
}
100% {
	opacity:1;
}
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.brand_logo .w1200 {
	padding-top: 5%;
	padding-bottom: 5%;
}
.brand_logo .lead {
	margin-bottom: 3%;
}
.brand_logo .com_txt_link {
	padding-top: 3%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.brand_logo .w1200 {
	padding-top: 6%;
	padding-bottom: 8%;
}
.brand_logo .lead {
	font-size: 120%;
	letter-spacing: .05em;
	margin-bottom: 4%;
}
.brand_logo .logo_list li {
	width: 32%;
	margin-right: 2% !important;
	margin-top: 2% !important;
}
.brand_logo .logo_list li:nth-child(3n),
.brand_logo .logo_list li:last-child {
	margin-right: 0 !important;
}
.brand_logo .logo_list li:nth-child(-n+3) {
	margin-top: 0 !important;
}
.brand_logo .com_txt_link {
	padding-top: 7%;
}
}



/*information（お知らせ・ブログ）
---------------------------------------------------------*/
.topics {
	padding-top: 80px;
	padding-bottom: 60px;
}
.blog {
	padding-top: 60px;
	padding-bottom: 100px;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.topics {
	padding-top: 6%;
	padding-bottom: 6%;
}
.blog {
	padding-top: 4%;
	padding-bottom: 8%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.topics {
	padding-top: 10%;
	padding-bottom: 10%;
}
.blog {
	padding-top: 10%;
	padding-bottom: 14%;
}
}




/*チラシ
---------------------------------------------------------*/
.chirashi {
	background: url("../images/chir_bg@2x.png") repeat center center;
	background-size: 201px auto;
	padding: 60px 0;
}
.chirashi .w1300 {
	display: -webkit-flex;
	display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.chirashi .box_l {
	width: 27%;
}
.chirashi .box_r {
	width: 70%;
}
.chirashi .box_l p {
	color: #cc2d2d;
	font-size: 160%;
	letter-spacing: .1em;
	line-height: 1.6em;
	margin-top: 1.0em;
}

.chirashi #tab-menu {
	width: 100%;
	max-width: 720px;
	display: -webkit-flex;
	display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	margin-bottom: 30px;
}
.chirashi #tab-menu li {
	width: 20%;
	box-sizing: border-box;
	border-right: solid 1px #fff;
	text-align: center;
	background: #999;
	color: #fff;
	letter-spacing: .15em;
	line-height: 1.2em;
	height: 3.0em;
	position: relative;
	cursor: pointer;
}
.chirashi #tab-menu li span {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.chirashi #tab-menu li.active {
	background: #cc2d2d;
}
.chirashi #tab-menu li::before {
	content: "";	/* 吹き出しの三角 */
	position: absolute;
	width: 100%;
	height: .6em;
	left: 0;
	top: calc(100% - 1px);
	background: url("../images/chir_now@2x.png") no-repeat center top;
	background-size: contain;
	opacity: 0;
}
.chirashi #tab-menu li.active::before {
	opacity: 1;
}
.chirashi #tab-box {
	width: 100%;
	max-width: 720px;
}
.chirashi #tab-box > div {
  display: none;	/* 初期表示 */
}
.chirashi #tab-box > div.active {
  display: block;
}
.chirashi .pdf_area {
	margin-left: auto;
	margin-right: auto;
}

/* 1300px以下
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1300px) {
.chirashi .box_l p {
	font-size: 2.2vw;
	letter-spacing: .05em;
}
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.chirashi {
	padding: 5% 0;
}
.chirashi .w1300 {
	display: block;
}
.chirashi .box_l {
	width: 100%;
	margin-bottom: 3%;
}
.chirashi .box_r {
	width: 100%;
}
.chirashi .box_l h2 {
	width: 25%;
}
.chirashi .box_l p {
	font-size: 140%;
	letter-spacing: .15em;
	margin-top: .5em;
}

.chirashi #tab-menu {
	max-width: 100%;
	margin-bottom: 3%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.chirashi {
	padding: 10% 0;
}
.chirashi .w1300 {
	display: block;
}
.chirashi .box_l {
	width: 100%;
	margin-bottom: 6%;
}
.chirashi .box_r {
	width: 100%;
}
.chirashi .box_l h2 {
	width: 40%;
}
.chirashi .box_l p {
	font-size: 100%;
	letter-spacing: .05em;
	margin-top: .4em;
}

.chirashi #tab-menu {
	max-width: 100%;
	margin-bottom: 6%;
}
.chirashi #tab-menu li {
	font-size: 90%;
	letter-spacing: .05em;
	height: 4.0em;
}
}



/*店舗情報
---------------------------------------------------------*/
.store .w1200 {
	position: relative;
	padding-top: 60px;
	padding-bottom: 80px;
}
.store .w1200::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 42px;
	background: url("../images/store@2x.png") no-repeat center center;
	background-size: contain;
	left: 0;
	top: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.store h2 {
	text-align: center;
	color: #000;
	font-size: 180%;
	letter-spacing: .08em;
	line-height: 1.2em;
}
.store .f_store_list {
	display: -webkit-flex;
	display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.store .f_store_list > li {
	width: 30%;
	margin-right: 5%;
	margin-top: 60px;
}
.store .f_store_list > li:hover .com_arrow .icon::before {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.store .f_store_list > li:nth-child(3n) {
	margin-right: 0;
}
.store .f_store_list .img_item {
	margin-bottom: 1.5em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.store .w1200 {
	padding-top: 6%;
	padding-bottom: 6%;
}
.store .w1200::before {
	height: 28px;
}
.store h2 {
	font-size: 160%;
}
.store .f_store_list > li {
	width: 31%;
	margin-right: 3.5%;
	margin-top: 4%;
}
.store .f_store_list .img_item {
	margin-bottom: 1.0em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.store .w1200 {
	padding-top: 8%;
	padding-bottom: 10%;
}
.store .w1200::before {
	height: 1.5em;
}
.store h2 {
	font-size: 140%;
	letter-spacing: .1em;
}
.store .f_store_list {
	display: block;
}
.store .f_store_list > li {
	width: 100%;
	margin: 8% auto 0 !important;
	border-top: solid 1px #d9d9d9;
	padding-top: 8%;
	display: -webkit-flex;
	display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}
.store .f_store_list > li:first-child {
	border-top: none;
	padding-top: 0;
}
.store .f_store_list .img_item {
	width: 32%;
	margin: 0;
}
.store .f_store_list .txt {
	width: 64%;
}
}



/*採用情報
---------------------------------------------------------*/
.recruit {
	padding: 20px 20px 0;
}
.recruit .bg {
	width: 100%;
	background: url("../images/top/recr_bg@2x.jpg") no-repeat center top;
	background-size: cover;
}
.recruit .bg .w1240 {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
}
.recruit .txt {
	width: 60%;
}
.recruit .link_btn {
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 10%;
	width: 22%;
	max-width: 220px;
	border-radius: 50%;
	overflow: hidden;
	-webkit-transform: translateX(10%);
	transform: translateX(10%);
}
.recruit .link_btn a {
	display: block;
	background-image: linear-gradient(to right, rgba(206,167,242,1) 0%, rgba(98,174,252,1) 51%, rgba(206,167,242,1) 100%);
 	background-size: 200% auto;
-webkit-transition: all 0.6s;
-moz-transition: all 0.6s;
transition: all 0.6s;
}
.recruit .link_btn a:hover {
-webkit-transition: all 0.6s;
-moz-transition: all 0.6s;
transition: all 0.6s;
	background-position: right center;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.recruit {
	padding: 10px 10px 0;
}
.recruit .bg .w1240 {
	padding-top: 6%;
	padding-bottom: 6%;
}
.recruit .link_btn {
	right: 3%;
	-webkit-transform: none;
	transform: none;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.recruit {
	padding: 10px 10px 0;
}
.recruit .bg {
	background-position: 28% top;
}
.recruit .bg .w1240 {
	padding-top: 4%;
	padding-bottom: 4%;
}
.recruit .txt {
	width: 80%;
}
.recruit .link_btn {
	width: 16%;
	max-width: 100%;
	right: 3%;
	bottom: 6%;
	-webkit-transform: none;
	transform: none;
}
.recruit .link_btn a::before {
	content: "";	/* 高さ */
	display: block;
	padding-top: 100%;
}
.recruit .link_btn a::after {
	font-family: 'fontello';
	content: '\e801';
	color: #fff;
	font-size: 120%;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin: auto;
	text-align: center;
}
}



/*
---------------------------------------------------------*/
footer {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}
footer .f_brand {
	-webkit-order: 2;
	order: 2;
}
footer .f_info {
	-webkit-order: 1;
	order: 1;
}
footer .f_copy {
	-webkit-order: 3;
	order: 3;
}

footer .f_brand {
	padding: 60px 0;
	color: #666;
	font-size: 80%;
	letter-spacing: .08em;
	line-height: 1.8em;
}
footer .f_brand p {
	margin-top: 30px;
}
footer .f_brand p:first-of-type {
	margin-top: 0;
}
footer .f_brand p span {
	font-weight: bold;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
footer .f_brand {
	padding: 4% 0;
	font-size: 70%;
	letter-spacing: normal;
	line-height: 1.6em;
}
footer .f_brand p {
	margin-top: 2%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
footer .f_brand {
	display: none;
}
}



/*
---------------------------------------------------------*/

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
}