@charset "UTF-8";

a:not([class])
{
	color: rgba(0, 0, 0, 1);
	display: inline-frame;
	text-decoration: under-line;
	
	-webkit-transition: color .5s ease;
	-moz-transition: color .5s ease;
	-ms-transition: color .5s ease;
	-o-transition: color .5s ease;
	transition: color .5s ease;
}

a:not([class]):hover
{	
	color: rgba(100, 100, 100, 1);
}

.container{width:auto; margin-left:auto; margin-right:auto; text-align:left; padding:0; width:650px;}
.container_relative{position:relative; width:auto;}
.contents_area{width:auto;}

#loader{
	position:fixed;
	height:100%;
	height:100vh;
	width:100%;
	top: 0px;
	left:0px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	z-index:9999;
}

#loader:after
{
	content: "";  /* 新しい要素を作る */
	display: block;  /* ブロックレベル要素に */
	position: absolute;
	width: 30px; /*ローディングアイコンの横サイズ*/
	height: 30px; /*ローディングアイコンの縦サイズ*/
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border-width: 5px;
	border-style: solid;
	
	top: 50%;
	left: 50%;
	margin-top:-30px;
	margin-left:-30px; 

	animation: spin 1s linear infinite; /*1秒毎にくるくる回転するアニメーション*/
}

@keyframes spin
{
	0% { transform: rotate(0deg);   opacity: 0.2; } /*0%の時は20％の透明度*/
	50%  { transform: rotate(180deg); opacity: 1.0; } /*50%の時は透明度なし*/
	100%   { transform: rotate(360deg); opacity: 0.2; } /*100%の時に20％の透明度に戻る*/
}

#main
{
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}

/********GO TOP******/

#goTopBt{position:fixed; bottom:75px; right:5px; z-index:9999; display:none; width:55px; height:50px;
	background-position: 50% 50%; cursor:pointer;
	-moz-border-radius: 3px 0px 0px 0px;
	-webkit-border-radius:3px 0px 0px 0px;
	border-radius:3px 0px 0px 0px;
}

/********LOGO******/

#logo{width:100%; height:100px; background-repeat:no-repeat; background-position: 50% 50%; text-indent: -9999px; background-size: contain; margin-bottom: 55px}


/********SELECTOR******/

#selector{width:100%; position:absolute; top: 100px;
/*	overflow: hidden;*/
	z-index:8999;
	box-shadow: inset 0px -6px 5px -5px rgba(0,0,0,0.5);
	-moz-box-shadow: inset 0px -6px 5px -5px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 0px -6px 5px -5px rgba(0,0,0,0.5);
}

#selector > div{overflow:hidden; padding:1em 0; min-width: 650px;}
#selector .contents{}

#selector .contents a{display:block; height:24px; text-indent:-9999px; float: left; margin:0 5px; cursor:pointer;}
#selector #conceptBt{background-position: 0 0; width:125px;}
#selector #menuBt{background-position: 0 -25px; width:125px;}
#selector #shopBt{background-position: 0 -50px; width:125px;}
#selector #jobBt{background-position: 0 -75px; width: 80px;}
#selector .shareBt{background-position: 0 -100px; width: 25px;}

#selector #conceptBt, #selector #menuBt, #selector #shopBt{position: relative;}
#selector #conceptBt:after, #selector #menuBt:after, #selector #shopBt:after
{
	content: "";  /* 新しい要素を作る */
	display: block;  /* ブロックレベル要素に */
	position: absolute;
	bottom: -5px;
	left:30px;	
	border-bottom: 0px solid;
	-webkit-transition:all .2s ease;
	-moz-transition:all .2s ease;
	-ms-transition:all .2s ease;
	-o-transition:all .2s ease;
	transition:all .2s ease;	
}

#selector #conceptBt:after{width: 80px;}
#selector #menuBt:after{width: 85px;}
#selector #shopBt:after{width: 85px;}

#selector #conceptBt:hover:after, #selector #menuBt:hover:after, #selector #shopBt:hover:after
{
	border-bottom: 2px solid;
}

#menuContainer p{text-align: center; font-family: font1; margin-top: 5em; font-size: 1.5em;}
#menuContainer a.recruit
{
	position: relative;
	font-family: font1;
	font-size: 1.5em;
	display: block;
	width: 500px;
	padding: 25px;
	border: 2px solid;
	margin-top: 2em;
	text-align: center;
	left: 50%;
	margin-left: -275px;
	text-decoration: none;
	
	-webkit-transition:all .2s ease;
	-moz-transition:all .2s ease;
	-ms-transition:all .2s ease;
	-o-transition:all .2s ease;
	transition:all .2s ease;
}

.shareContainer
{
	display:none;
	position:absolute;
	z-index:9999;
	width:500px;
	background:white;
	border:1px solid rgb(250,250,250);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.3);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);	
}
.shareContainer .clearfix{padding: 10px;}

a.snsCloser{width:30px; height:30px; cursor:pointer;  background-repeat:no-repeat; background-position: 50% 50%; display:block; float:right;
	margin: 5px;
	filter:alpha(opacity=30);
	-moz-opacity: 0.3;
	opacity: 0.3;
}
.svg a.snsCloser{background-image:url('../_img/close.svg');}
.no-svg a.snsCloser{background-image:url('../_img/close.gif');}

.snsURL
{
	float:left; margin: 5px; font-size:15px;
	padding:5px;  background-color: rgb(249, 249, 249); width:240px; border:1px solid rgb(230,230,230); color:rgb(100,100,100);
	-moz-border-radius: 3px;
	-webkit-border-radius:3px;
	border-radius:3px;
}

div.snsBT{display:block; width:60px; height:40px; background-position:0 -30px; cursor:pointer; float:left;
	filter:alpha(opacity=30);
	-moz-opacity: 0.3;
	opacity: 0.3;
}
.svg div.snsBT{background-image: url(../_img/snsBT.svg);}
.no-svg div.snsBT{background-image: url(../_img/snsBT.png);}

a.snsBT{display:block; width:40px; height:40px; cursor:pointer; float:left;
	filter:alpha(opacity=30);
	-moz-opacity: 0.3;
	opacity: 0.3;
}
.svg a.snsBT{background-image: url(../_img/snsBT.svg);}
.no-svg a.snsBT{background-image: url(../_img/snsBT.png);}

a.snsBT:hover{
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}
.fBT{background-position:0px 0px;}
.tBT{background-position:-40px 0px;}
.gBT{background-position:-80px 0px;}
.mBT{background-position:-120px 0px;}


/********BANNER******/

#bannerSection
{
	z-index:8000;
}

/********NEWS******/

#news{position:relative; z-index:1000; width:100%; padding:2em 0; overflow:hidden;}


/********CONCEPT******/

#concept{position:relative; line-height:0;}
#entBt
{
	position: absolute; top:20px; left:50%; width: 50px; height:50px; z-index:0; margin-left:-25px; cursor:pointer;
	background-size: cover;
	-webkit-transition:all .2s ease;
	-moz-transition:all .2s ease;
	-ms-transition:all .2s ease;
	-o-transition:all .2s ease;
	transition:all .2s ease;
}
#entBt:hover
{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}


/********MENU******/

#menu{padding-top:2em; padding-bottom:5em;}

a.menuBt
{
	float:left;
	width:290px; height:290px; text-indent: -9999px;
	cursor: pointer;
	text-decoration:none;
	background-size: cover;
	-webkit-transform:translate(0,0);-moz-transform:translate(0,0);
	transform:translate(0,0);
	-webkit-transition:all .2s ease;
	-moz-transition:all .2s ease;
	-ms-transition:all .2s ease;
	-o-transition:all .2s ease;
	transition:all .2s ease;
}

a.menuBt:hover
{
	transform:translate(8px,8px);
	-moz-transform:translate(8px,8px);
	-webkit-transform:translate(8px,8px);
	-o-transform:translate(8px,8px);
	-ms-transform:translate(8px,8px);
}

.menuContents{display:none;}
.menuImg{min-height:100px; width:100%; text-align:center; background-repeat:no-repeat; background-position: 50% 50%; overflow:hidden;}

#menuContainer{position:fixed; top:-200px; left:0px; width:100%; z-index: 9900;}
.closeBt
{
	position:fixed; top:10px; right:10px; cursor:pointer;
	border: 1px solid;
	padding:.25em 1em;
	-moz-border-radius: 5px;
	-webkit-border-radius:5px;
	border-radius:5px;
}

.menuConBt{
	position: fixed; cursor:pointer; top: 50%; margin-top: -20px;
	width: 40px;
	height: 40px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
/*	border: 1px solid;*/
}
.menuConBt:after
{
	content:""; display:block; position:absolute;
	top: 50%; left: 50%;
	width: 12px; height: 12px;
	margin-top: -6px;
	border-style: solid; border-width: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#menuNextBt{left: 10px;}
#menuNextBt:after
{
	border-bottom-width: 2px;
	border-left-width: 2px;
	margin-left: -3px;
}

#menuPrevBt{right: 10px;}
#menuPrevBt:after
{
	border-top-width: 2px;
	border-right-width: 2px;
	margin-left: -10px;
}

.linkBt, .pdfLink, .mapRootBt, .mapJumpBt
{
	cursor:pointer; text-align:center;
	text-decoration: none;
	border: none;
	padding: .2em .5em;
	color: white;
	-moz-border-radius: 5px;
	-webkit-border-radius:5px;
	border-radius:5px;
}

.linkBt{font-size: 0.9em; margin-left:.5em;}
.pdfLink{font-size: 1.5em; display:block; margin-top: 1em;}
.mapJumpBt{display:block; color:white;}
.mapRootBt{font-size: 0.9em; display:block; margin-top: 1em;}

/********MAP******/

.mapContainer{width:auto; padding:0 2em 2em 2em;}
#map_canvas{height:450px; width:100%; background-position: 50% 50%;}
.mapNum{position:absolute; width:30px; height:48px; background-repeat:no-repeat; background-position: 50% 50%;}
.mapShopName{font-size:1.1em; margin: .5em 0;}
.mapShopInfo{font-size:.9em; margin-bottom: .5em;}

.shopInfo
{
	display:flex;
	margin-bottom: 1em;
	box-shadow:0px 0px .5em 0 rgba(0,0,0,0.5);
	-moz-box-shadow:0px 0px .5em 0 rgba(0,0,0,0.5);
	-webkit-box-shadow:0px 0px .5em 0 rgba(0,0,0,0.5);
}

.shopText
{
	float:left;
	width:50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.shopText div:not(.map){padding:1em;}
.shopText div.map
{
	aspect-ratio: 4 /1;
	max-height: 500px;
}
.shopText p{font-size:1.1em; margin-bottom: .5em;}
.shopText .shopInfoList{padding:.25em; background-color: rgba(255, 255, 255, .5);}
.shopText table{table-layout: auto;}
.shopText td{vertical-align:top; padding: .25em;}
.shopText td.list-1{color: rgb(100,100,100); white-space: nowrap; width:auto;}
.shopText td.list-2{white-space: normal;}
.shopText td span{font-size: .8em;}

.shopPhoto
{
/*	float:left;*/
	position: relative;
	width: 50%;
	aspect-ratio: 5 / 2;
}
.shopPhoto:before
{
	content:"";
	display: block;
	padding-top: 55%;
}
.shopPhotoArea
{
	overflow:hidden; 
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.shopPhotoTrim
{
	overflow:hidden;
	position:relative;
	display: flex;
	align-content: center;
	justify-content: center;
}
.shopPhotoTrim > img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.showPhotoIconBt{width:50px; height:50px;}

.shopPhotoDir{width:40px; height:50px; position:absolute; top:50%; margin-top:-25px; cursor:pointer;}
.svg .shopPhotoDir{background-image:url(../_img/photoDir.svg?);}
.no-svg .shopPhotoDir{background-image:url(../_img/photoDir.png);}

.shopPhotoLoader{background: url(../img/loading.gif) no-repeat 50% 50%;}
.shopPhotoDirR{background-position:40px 0; right:5px;}
.shopPhotoDirL{background-position:0px 0; left:5px;}

.shopCaption
{
	width:100%; position:relative; z-index:8000;
	opacity: 0;
}
.shopCaption span{display:block; padding:.5em; text-align:center;}

/*FOOTER*/
#footer{padding:2em 1em 100px 1em; text-align: center; font-size: .9em;}
#footer a{display: inline-block; margin:0 .5em; text-decoration: none; padding-left:1.5em; background-position: 0% 50%; background-repeat: no-repeat;}
#footer p{text-align:center;}

#footerJobBt
{
	display: inline-block;
	position: relative;
	text-align: center;
	cursor: pointer;
}
#footerJobBt:after
{
	content: "";  /* 新しい要素を作る */
	display: block;  /* ブロックレベル要素に */
	position: absolute;
	width: 100%;
	bottom: 0;
	left:0;	
	border-bottom: 0px solid;
	-webkit-transition:all .2s ease;
	-moz-transition:all .2s ease;
	-ms-transition:all .2s ease;
	-o-transition:all .2s ease;
	transition:all .2s ease;	
}
#footerJobBt:hover:after
{
	border-bottom: 2px solid;
}

#footerLink
{
	position: relative;
	width: 100%;
	overflow: hidden;
/*	box-shadow:0px 0px .5em 0 rgba(0,0,0,0.5);
	-moz-box-shadow:0px 0px .5em 0 rgba(0,0,0,0.5);
	-webkit-box-shadow:0px 0px .5em 0 rgba(0,0,0,0.5);*/
}

#footerLink p{text-align:center; padding:2em 0;}

.shopBt{float:left; overflow: hidden; position: relative; width:25%;}

.shopBt a
{
	position: absolute;
	width:100%; height:100%; text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	cursor: pointer;
	float:left;
	display:block;
	text-decoration:none;
}

.shopBt #miyashoku{background-size: contain;}
.shopBt #katsusei, .shopBt #toranomon, .shopBt #torajiro{background-size: cover;}

.svg .shopBt #miyashoku{background-image: url(../img/logo.svg); background-color: white;}
.no-svg .shopBt #miyashoku{background-image: url(../img/logo.png);}
.shopBt #katsusei{background-image: url(../img/01.jpg);}
.shopBt #toranomon{background-image: url(../img/02.jpg);}
.shopBt #torajiro{background-image: url(../img/03.jpg);}

.shopBt .logo
{
	position: absolute;
	width:100%; text-indent: -9999px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
.svg .shopBt #logo-katsusei{background-image: url(../img/logo-katsusei.svg);}
.svg .shopBt #logo-toranomon{background-image: url(../img/logo-toranomon.svg);}
.svg .shopBt #logo-torajiro{background-image: url(../img/logo-torajiro.svg);}



/*//////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// MEDIA SCREEN /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////*/


@media screen and (min-width: 1000px)
{
	a.menuBt
	{
		width:400px; height:400px; text-indent: -9999px;
		display:block;
		margin:25px;
	}
	.container{width:1000px; margin-left:auto; margin-right:auto; text-align:left;}
	.container_relative{width:1000px; position:relative;}
	.contents_area{width:1000px;}
	.menuBtContainer{position:relative; left:50%; margin-left:-450px; width: 900px;}
}

@media screen and (min-width: 651px) and (max-width: 999px)
{
	.container{width:auto; margin-left:auto; margin-right:auto; text-align:left; padding:0 50px;}
	.container_relative{position:relative; width:auto;}
	.contents_area{width:auto;}
	.menuBtContainer{position:relative; left:50%; margin-left:-325px; width: 650px;}
	a.menuBt
	{
		width:300px; height:300px; text-indent: -9999px;
		display:block;
		margin:12px;
	}
}

@media screen and (max-width: 850px)
{
	.shopInfo
	{
		flex-direction: column;
	}
	.shopPhoto
	{
		aspect-ratio: 2 / 1;
		width:100%;
	}
	.shopText{width:100%;}
}

@media screen and (max-width: 650px)
{
	.container{width:auto; margin-left:auto; margin-right:auto; text-align:left; padding:0; width:650px;}
	.container_relative{position:relative; width:auto;}
	.contents_area{width:auto;}

	.shopBt{float:none; overflow: hidden; position: relative; width:100%;}
	.shopBt #miyashoku{background-size: cover;}

	#menu .menuBtContainer{position:relative; left:50%; margin-left:-325px; width: 650px;}
	a.menuBt
	{
		width:290px; height:290px; text-indent: -9999px;
		display:block;
		margin:15px;
	}
	
	.snsURL{margin-left:10px; width: 380px;}
	.snsBT{margin-top:10px;}
	a.snsCloser{height:40px; width:40px; margin-top:10px;}
}