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

@import url('https://fonts.googleapis.com/earlyaccess/hannari.css');

html{
	font-size: 62.5%;
}

*{margin:0; padding:0;}

body{
	width:100%;
	color:#595757
	font-family: "Roboto","sans-serif";
	font-size: 1.6rem;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}

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

a{
	color:#000;
	text-decoration: none;
}

li{
	list-style: none;
	
}

.text-center{
	text-align: center;
}


.font-paint_s{
	width:13%;
}

.font-paint{
	width:18%;
}

.category_jp{
	font-size: 2.1rem;
	margin-bottom: 30px;
}

.brsp{
	display: none;
}

/*--------------------------------------
 *
 *loader/
 *
 *------------------------------------*/

#loader-bg {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #222;
	z-index: 1000;
}
#loader-inner {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	margin-top: -100px;
	margin-left: -100px;
	text-align: center;
	color: #fff;
	z-index: 2000	;
}

.loadingtext{
	
}

/*--------------------------------------
 *
 *header/
 *
 *------------------------------------*/
.header{
	width:95%;
	margin:50px auto 50px;
	position: relative;
}

.headerlist{
	text-align: center;
	line-height: 0.5em;
	display: flex;
}

.headerlist_sp{
	display: none;
}

.headerlist li:first-child{
	margin-right: auto;
}

.inline_block{
	display: inline-block;
}

.top_logo{
	width:300px;
}

.logo_center{
	position: absolute;
	top:50%;
	left:50%;
	-webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	width: 15%;
	z-index: 1;
}

.sns_icon{
	width:30px;
	margin-left: 15px;
}

.sns{
	padding-top: 25px;
	padding-left: 50px;
}



.list_content{
	width:12%;
	padding-top: 10px;
}

.list_content_first{
	padding-left: 50px;
}


.list-jp{
	margin-top: 12px;
	font-size: 1.6rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}

.list-en{
	margin-top: 20px;
	font-size: 1.2rem;
	font-family: 'Noto Sans', sans-serif;
	text-transform: uppercase;
	font-weight: bold;
}

.catch_main_box{
	clear:  both; 
	z-index: 30;
	margin:0 auto 120px;
	width:90%;
}

.catch_main{
	width:20%;
	z-index: 30;
	margin:0 auto;
	float:right;
	font-size: 6.8rem;
	writing-mode: vertical-rl;
	font-family: "hannari", serif;
	color:#8f0000;
}

.copy_main{
	margin:0 auto;
	float: left;
	font-size:2.1rem;
	font-weight: bold;
	writing-mode: vertical-rl;
	line-height: 2;

}

/*--------------------------------------
 *
 *slider/
 *
 *------------------------------------*/
.slidepic_pc{
	min-width: 100%;
	
}

.slidepic_sp{
	display: none;
	min-width: 100%;
}


.float_wrapper{
	position:relative;
	margin:80px auto 0;
}

.top_float{
	position:absolute;
	z-index: 20;
	width: 45%;
	top:100px;
	left:50%;
	-webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.top_smoke{
	z-index: 25;
	position:absolute;
	width:65%;
	left:20%;
	top:-250px;
	opacity: 0.5;
}


/*--------------------------------------
 *
 *hamberger menu/
 *
 *------------------------------------*/
nav.globalMenuSp {
    position: fixed;
    z-index: 100	;
    top: 0;
    left: 0;
    background: #fff;
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
	opacity: 0.9;
}
 
nav.globalMenuSp ul {
    background: #fff;
    margin: 0 auto;
    padding: 0;
    width: 100%;

}
 
nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #333;
}
 
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
 
nav.globalMenuSp ul li a {
    display: block;
    color: #000;
    padding: 1em 0;
}
 
nav.globalMenuSp.active {
    transform: translateY(0%);
}


.navToggle {
    display: none;
    position: fixed; 
    right: 8px;
    top: 20px;
    width: 42px;
    height: 40px;
    cursor: pointer;
    z-index: 150;
    background: #fff;
    text-align: center;
	opacity: 0.6;
}
 
.navToggle span {
    display: block;
    position: absolute; 
    width: 30px;
    border-bottom: solid 3px #8f0000;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;

}
 
.navToggle span:nth-child(1) {
    top: 8px;
}
 
.navToggle span:nth-child(2) {
    top: 18px;
}
 
.navToggle span:nth-child(3) {
    top: 28px;
}


.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*--------------------------------------
 *
 *news/
 *
 *------------------------------------*/
#news{
	clear:  both; 
	margin:0 auto 180px;
	padding-top: 100px;
	text-align: center;
}

.news_text-box{
	padding:0 20px;
}
.news_day{
	margin-top: 10px;
	font-weight: bold;
	text-align: left;
}

.news_topic{
	text-align: left;
}
.innerS{
	width: 60%;
	margin: 0 auto;
  	height: 600px;
 	overflow: scroll;
	border: solid 3px #8f0000;
}

.news_table{
	margin: 10px 10px 0 10px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: left;
}

.news_table td{
	padding-right: 10px;
}


/*--------------------------------------
 *
 *menu/
 *
 *------------------------------------*/
#menu{
	position:relative;
	text-align: center;
}

.fadein{
	opacity : 0;
    transform : translate(0, 30px);
    transition : all 700ms;
}

.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

.menu_header{
	width:100%;
	display:clear;
	margin:0 auto;
}

.menu_button{
	padding-left: 0;
	display: flex;
	justify-content: space-between;
}

.menu_button_wrap{
	width:50%;
	margin:0 auto 50px;
	display:block;
}

.menupage_button{
	margin:0 auto 180px;
	width:40%;
	text-align: center;
}

.menu_head_child{
	position:absolute;
	top:20px;
	right:30%;
}



.lang-list{
	line-height: 1;
	font-size: 1rem;
	text-transform: uppercase;
}

.lang-item{
	display: inline-block;
}


#langChenge input[type="radio"]{
  display: none;
}
 
#langChenge label{
  	display    : inline-block;
	line-height: 1;
	font-size: 1.7rem;
	text-transform: uppercase;
}
 

#langChenge input[type="radio"]:checked + label {
  color:#8f0000;
}

.hover:hover{
	opacity: 0;
	transition-duration: 0.7s;
}

.list_button1{
	margin: 0 auto;
	width:100px;
	background-image:url( "../img/menu_icon_soba-rollover.gif");
	background-repeat: no-repeat;
	background-size: contain;
}


.list_button2{
	margin: 0 auto;
	width:100px;
	background-image:url( "../img/menu_icon_yakimeshi-rollover.gif");
	background-repeat: no-repeat;
	background-size: contain;
}

.list_button3{
	margin: 0 auto;
	width:100px;
	background-image:url( "../img/menu_icon_side-rollover.gif");
	background-repeat: no-repeat;
	background-size: contain;
}

.list_button4{
	margin: 0 auto;
	width:100px;
	background-image:url( "../img/menu_icon_drink-rollover.png");
	background-repeat: no-repeat;
	background-size: contain;
}

.button_text{
	font-size: 2rem;
	margin-top: 7px;
}

.circle_button{
	width:100px;
	height: 100px;
	border-radius: 50%;
}

.button_back{
}


.buttonimg_noodle{
	width:100px;
	height: 100px;
	background-image: url("../img/menu_icon_soba-rollover.gif");
	background-size: contain;
}

.fade-rollover{
	width:100px;
	height:100px;
}

.menu_wrap{
	padding-top: 1px;
	padding-bottom: 5px;
	margin:0 auto 150px;
	width:100%;
	height: 100%;
	background-color: #e7d9b9;
}

.menu_back{
	margin: 50px auto;	
	padding:30px;
	width: 70%;
	background-color: #fff;
	border-radius: 10px; 
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}

.menu_title_jp{
	margin: 0 auto;
	font-size: 6.8rem;
	color: #8f0000;
	font-family: "hannari", serif;
}

.menu_title_en{
	font-size: 2.2rem;
	color:#8f0000;
	margin:0 auto 30px;
	font-family: "hannari", serif;
}

.menu_top{
	position:relative;
	width:100%;
}

.menu_top_pic{
	width:100%;
	margin-bottom: 70px;
}

.menu_lang_en{
	margin-bottom: 30px;
	font-size:3rem;
	line-height: 1.2;
	vertical-align: top;
}

.menu_top_description{
	position:absolute;
	bottom:90px;
	left:3%;
	font-size: 2rem;
	color:#fff;

}

.menu_top_description_b{
	margin:0 auto 25px; 
	font-size: 2rem;
	color:#000;
}

.price_inlineblock{
	margin:0;
	padding-left: 3%;
	width:60%;
}

.price_wrap{
	margin:0;
	position: relative;
	display: flex;
}

.price{

}

dl.price {
	font-size: 3.6rem;
	overflow: hidden; 
	list-style: none;
	width:100%;
	font-family: serif;
	line-height: 2.5;
}

dl.price dt {
	text-align: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	clear: both;
	float: left; 
	width: 100%; 
	padding-right: 6em;
	display: block;
}


dl.price dt.description { 
	font-size: 80%;
	letter-spacing: -0.05em;
	padding-left:1em;  
	padding-right: 0; 
	background: none;
	line-height:1;
}

.description{
	font-size: 80%;
	letter-spacing: -0.05em;
	line-height:1;
}

dl.price dd {
	margin:0;
	padding:0;
	display: block;
	float: right;
	width: 6em; 
	margin-left: -6em;
	text-align: right;
}

.en_price{

	margin-top: 0;
	padding-top: 0;
}

.menu_pic{
	position: absolute;
	right:8%;
	bottom:0;
	display: inline-block;
	width: 22%;
}


.tab_content {
  	display: none;
 }

#noodle:checked ~ .menu_back #noodle_content{
  	display: block;
}
#rice:checked ~ #rice_content{
  	display: block;
}
#other:checked ~ #other_content{
  	display: block;
}
#drink:checked ~ #drink_content{
  	display: block;
}



.menu_button input[type="radio"]:checked + label img {
  	opacity: 0;
}

input[name="tab_item"] {
  display: none;
}


.tab_panel.active{
	display:block;
}

.content1, .content2, .content3,.content4 {
 	display : none;
	margin: 0 auto;

}

.content_current {
  	display : block;
}

.content{
	margin: 0px;
	padding: 0px;
}



/*--------------------------------------
 *
 *recruit/
 *
 *------------------------------------*/

.recruit{
	text-align: center;
	margin-bottom: 180px;
}

.recruit_flex{
	display: flex;
	display: -webkit-flex;
}

.recruit_img{
 	text-align: left;
	width:50%;
}

.recruit_text{
	margin-left: 70px;
	margin-bottom: 50px;
	text-align: left;
}

.recruit_body{
	font-size: 2.6rem;
	margin-bottom: 50px;
	line-height: 1.8;
	
}

.recruit_title{
	font-size: 5.7rem;
	margin: 0 auto 50px;
	font-family: "hannari", serif;
}

.recruit_button{
	width:60%;
}


/*--------------------------------------
 *
 *access/
 *
 *------------------------------------*/

#access{
	text-align: center;
	margin-bottom: 150px;
}

.access_map{
	width:1200px;
	height:450px;
}

.access_address{
	margin:0 auto 20px;
	font-size: 2.1rem;
}

.map_button{
	width:40%;
	margin:0 auto 30px;
	text-align: center;
}

.open_title{
	font-size: 2.3rem;
	font-weight: 600;
}

.open_time{
	font-size: 2.1rem;
	font-weight: 600;
}

.open_time span{
	font-size:1.8rem;
}

.open_day{
	font-size: 2.1rem;
	margin-bottom: 30px;
}

.parkingspace{
	font-size:2rem;
	margin:30px auto 50px;
}

.access_description{
	margin:0 auto;
	width:70%;
	font-size:1.8rem;
}

.access_description span{
	font-weight:bold;
}

/*--------------------------------------
 *
 *footer/
 *
 *------------------------------------*/
.footer_back{
	position: relative;
	width:100%;	
}

.footer_text{
	position: absolute;
	top: 70%;
  	left: 50%;
  	-ms-transform: translate(-50%,-50%);
  	-webkit-transform: translate(-50%,-50%);
  	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	font-size: 1.3rem;
	color:#fff;
}

.footer_img_pc{
	width:100%;
}

.footer_img_sp{
	display:none;
}


/*--------------------------------------
 *
 *recruitpage/
 *
 *------------------------------------*/

#recruit2{
	margin:90px auto 50px;
	text-align: center;
}

.recruit_title{
	margin-top: 8px;
	font-size: 3rem;
	font-family: "Roboto","sans-sarif";
	font-weight:bold;
	letter-spacing: 0.07em;
}

.recruitp_topimg{
	width:100%;
	margin:0 auto 50px;
	text-align: center;
	position: relative;
}


.recruitp_img_sp{
	display:none;
	width:100%;
	max-height: 100%;
	max-width: 100%;
}

.recruitp_img_wrap{
	width:50%;
}

.recruitp_img_pc{
	width:100%;
	height:auto;
}


.recruitp_fontpaint{
	width:18%;
	position: absolute;
	left:8%;
	top:13%;
}

.recruitp_catch{
	margin:0;
	position: absolute;
	bottom:5%;
	left:8%;
	font-size: 6.7rem;
	color:#fff;
	text-align: left;
	font-family: "hannari", serif;
	line-height: 1.2;
	font-weight: 400;
	letter-spacing: 0.05em;
}

.recruitp_body{
	margin:0 auto 120px;
	text-align: center;
	font-size: 2.1rem;
	font-weight: bold;
	line-height:1.9;
	letter-spacing: 0.06em;
}

.recruitp_top_sp{
	display: none;
	}

.recruit_content{
	width:67%;
	height:auto;
	margin: 0 auto 300px;
	display: flex;
	justify-content:space-between;
}

.recruit_den{
	position: relative;
	margin-top: 0;
	margin-left: 3%;
	font-size: 4.5rem;
	font-family: "hannari", serif;
	line-height: 1.4;
	font-weight: 400;
	letter-spacing: 0.02em;
}

.recruit_hokori{
	position: relative;
	margin-top: 0;
	font-size: 4.5rem;
	font-family: "hannari", serif;
	line-height: 1.4;
	font-weight: 400;
	letter-spacing: 0.02em;
}

.hokori_img{}

.den_catch{
	margin:0 auto;
	text-align: center;
}


.den_paint{
	opacity: 0.3;
	width: 60%;
	position:absolute;
	bottom:-70%;
}

.den_paint2{
	opacity: 0.3;
	width: 70%;
	position:absolute;
	right:5%;
	bottom:-60%;
}

/*--------------------------------------
 *
 *recruitpage/treatment/
 *
 *------------------------------------*/
#treatment{		
}

.taigu{
	width:67%;
	position: relative;
	background-color: #8f0000;
	margin:180px auto 180px;
	padding:25px 0 15px;
}

.taigu_icon_wrap{
	width:13%;
	height:auto!important;
	position:absolute;
	top:5%;
	right:20%;
	display: flex;
}

.taigu_icon_wrap img{
	 max-height:  100%!important;
}



.taigu_icon{
	margin-right: 20px;
	opacity: 0.9;
	height:auto;
}

.taigu_title{
	margin:0 auto 25px;
	text-align: center;
	color:#fff;
	font-size: 3.4rem;
	font-weight: bold;
}

.taigu_price{
	font-size: 3rem;
	font-weight: bold;
	color:#8f0000;
}

.taigu_attention{
	font-size: 2.1rem;
}

.taigu_font{
	vertical-align: top;
	font-size: 2.5rem;
}

.taigu_font td{
	padding-right: 20px;
}

.taigu_wrap{
	margin:0 25px 25px;
	padding:35px 80px 35px;
	background-color: #fff;
	border-radius: 15px;
	
}

.taigu_catch{
	font-size:2.5rem!important;
	font-weight:700!important;
	color: #8f0000!important;
}

.taigu_catch span{
	padding-top: 10px;
	padding-right: 20px;
}

.job_part{
	font-size: 3.2rem;
	font-weight: 700;
}

.taigu_koumoku{
	white-space: nowrap;
}

table .taigu_font{
		border-spacing: 10px;

}

/*--------------------------------------
 *
 *recruitpage/contact/
 *
 *------------------------------------*/
#contact{
	text-align: center;
}

.bosyu_catch{
	width:55%;
	margin:0 auto 50px;
}

.bosyu_tel{
	width:46%;
	margin:0 auto;
}


/*--------------------------------------
 *
 *delivery/
 *
 *------------------------------------*/

.delivery{
	text-align: center;
	width:60%;
	margin:20px auto 180px;
	padding:30px;
	background-color: #fdf7e9;
	border-color:#555;
	font-size:1.8rem;
}

.delivery-title{
	
}

.delivery-body{
	margin:20px auto 0;
	letter-spacing: 0.1rem;
	line-height: 1.5;
}

.delivery-body span{
	font-weight: bolder;
	color: red;
}

.delivery-content{
	width:70%;
	font-weight: bold;
	margin:25px auto 0;
}

.delivery-phone{
	display: flex;
	width:75%;
	text-align: center;
	margin:0 auto;
}

.delivery-phone-button{
	margin:10px;
}

.delivery-emergency{
	font-size:1.4rem;
	margin: 20px auto 30px;
	width:80%;
	padding:10px;
	border:solid 1px #8f0000;
	border-radius:10px;
	color:#8f0000;
	}

.delivery-excuse{
	font-size:1.4rem;
}

.howtoeat{
	margin:20px auto 0;
	font-weight: bold;
	font-size:1.8rem;
}

.howtoeat-text{
	margin-top: 30px;
	color:#8f0000;
}

.shipping-title{
	margin:25px auto 5px;
	font-weight: bold;
}

.shipping-table{
	margin:30px auto 0;
	width:500px;
}

.shipping-free{
	font-weight: bold;
	color:#8f0000;
}

.yubin-title{
	font-weight: bold;
}

.yubin-table{
	margin:0 auto;
	width:500px;
}

/*--------------------------------------
 *
 *for responsive sp_ll/
 *	
 *------------------------------------*/
@media screen and (max-width:1300px){
	

	

.taigu_title{
	margin:0 auto 25px;
	text-align: center;
	color:#fff;
	font-size: 3.7rem;
	font-weight: bold;
}

.taigu_price{
	font-size: 3rem;
	font-weight: bold;
	color:#8f0000;
}

.taigu_attention{
	font-size: 2.1rem;
}

.taigu_font{
	vertical-align: top;
	font-size: 2.5rem;
}

.taigu_font td{
	padding-right: 20px;
}

.taigu_wrap{
	margin:0 25px 25px;
	padding:35px 120px 35px;
	background-color: #fff;
	border-radius: 15px;
	
}

.taigu_catch{
	font-size:2.5rem!important;
	font-weight:700!important;
	color: #8f0000!important;
}

.taigu_catch span{
	padding-top: 10px;
	padding-right: 20px;
}

.job_part{
	font-size: 3.2rem;
	font-weight: 700;
}

.taigu_koumoku{
	white-space: nowrap;
}

table .taigu_font{
		border-spacing: 10px;

}

}

	
/*--------------------------------------
 *
 *for responsive sp_l/
 *
 *------------------------------------*/
	
@media screen and (max-width:768px){
	

.font-paint_s{
	width:28%;
}

.font-paint{
	width:33%;
}

.category_jp{
	font-size: 1.1rem;
	margin-top: 0;
	margin-bottom: 15px;
}	
	
/*--------------------------------------
 *
 *header/
 *
 *------------------------------------*/
.header{
	width:93%;
	margin:25px auto 25px;
	position: relative;
}
	

.headerlist{
	width:100%;
	padding-left: 0;
	}
	
.headerlist li{
	width:100%;
	margin:0;
	}
	
.list_content{
	display: none;
}

	
.list-jp{
	margin-top: 12px;
	font-size: 1.6rem;

}

.list-en{
	margin-top: 5px;
	font-size: 0.6rem;

}
	
.sns{
	display:none;
}

.inline_block{
	display: inline-block;
}

.top_logo{
	width:37%;
}

.slidepic_pc{
	display:none;
}

.slidepic_sp{
	display: block;
	margin:0 auto 25px;
}

	
	
.logo_center{
	width: 30%;
}
	

	
.navToggle{
	display: block
}
	


	
/*--------------------------------------
 *
 *news/
 *
 *------------------------------------*/
#news{
	margin:0 auto 90px;
	padding-top: 50px;
}

.news_text-box{
	padding:0 15px;
}
	
.news_day{
	font-weight: bold;
	text-align: left;
	font-size:1.3rem;
}

.news_topic{
	margin:10px auto;
	font-size:1.3rem;
}
.innerS{
	width: 95%;
  	height: 350px;
 	border: solid 2px #8f0000;
}


/*--------------------------------------
 *
 *menu/
 *
 *------------------------------------*/

.menu_button{
	padding-left: 0;
	display: flex;
	justify-content: space-between;
}

.menu_button_wrap{
	width:85%;
	margin:0 auto 25px;
}

.menu_head_child{
	position:absolute;
	top:17px;
	right:10%;
}

.lang-list{
	line-height: 1;
	font-size: 0.9rem;
}

 
#langChenge label{
	font-size: 0.9rem;
}
	
.langCng{

	}


.button_text{
	display: static;
	font-size: 1rem;
	margin-top: 3px;
}

.circle_button{
	width:50px;
	height: 50px;
}




.fade-rollover{
	width:100px;
	height:100px;
}

.menu_wrap{
	margin:0 auto 90px;
}

.menu_back{
	margin: 15px auto;	
	padding:10px;
	width: 88%;
}

.menu_title_jp{
	margin: 0 auto;
	font-size: 2.5rem;
}

.menu_title_en{
	font-size: 1rem;
	margin:0 auto 15px;
}



.menu_top_pic{
	margin-bottom: 12px;
}

.menu_lang_en{
	font-size:1.5rem;
}

.menu_top_description{
	bottom:25px;
	left:3%;
	font-size: 0.8rem;
}

.menu_top_description_b{
	margin:0 auto ; 
	font-size: 0.8rem;
}

.list_button1{
	width:50px;
}
	
.list_button2{
	width:50px;
}
	
.list_button3{
	width:50px;
}
	
.list_button4{
	width:50px;
}

dl.price {
	font-size: 1.4rem;
	line-height: 2;
}


dl.price dt.description { 
	letter-spacing: -0.1em;
	padding-left:0.5em;  
}

.description{
	letter-spacing: -0.1em;
}

.menu_pic{
	position: absolute;
	right:8%;
	bottom:5px;
	width: 22%;
}

.menupage_button{
	width:55%;
}

/*--------------------------------------
 *
 *recruit/
 *
 *------------------------------------*/

.recruit{
	margin-bottom: 90px;
}

.recruit_flex{
	display: block;
}

.recruit_img{
 	width:100%;
}

.recruit_text{
	margin:0 auto;
	text-align: center;
}

.recruit_body{
	font-size: 1.3rem;
	margin-bottom: 25px;
}

.recruit_title{
	font-size: 2.8rem;
	margin: 25px auto 25px;
	font-family: "hannari", serif;
}

.recruit_button{	
	width:55%;
}


/*--------------------------------------
 *
 *access/
 *
 *------------------------------------*/

#access{
	margin-bottom: 60px;
}

.access_map{
	width:100%;
	height:450px;
}	
	
.access_map_pc{
	display: none;	
}
	
.access_map_sp{
	display: block;
	width:100%;
	margin-bottom: 25px;
}

.access_address{
	margin:0 auto 10px;
	font-size: 1.1rem;
}
	
.map_button{
	width:55%;
	margin-bottom: 20px;
	}
	
.parkingspace{
	font-size:1.6rem;	
	}
	

.access_description{
	width: 90%;
	font-size:1.2rem;
}

	
	

/*--------------------------------------
 *
 *footer/
 *
 *------------------------------------*/
.footer_back{
	height:70px;
}

	
.footer_text{
	width:100%;
	text-align: center;
	position: absolute;
	top: 90%;
  	left: 50%;
  	-ms-transform: translate(-50%,-50%);
  	-webkit-transform: translate(-50%,-50%);
  	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	font-size: 0.5rem;
	color:#fff;
}

.footer_img_pc{
	display: none;
}
	
.footer_img_sp{
	display: block;
}

	
/*--------------------------------------
 *
 *recruitpage/
 *
 *------------------------------------*/

#recruit2{
	margin:45px auto 25px;
}

.recruit_title{
	margin-top: 8px;
	font-size: 1.6rem;
}

.recruitp_topimg{
	width:100%;
	margin:0 auto 50px;
	text-align: center;
	position: relative;
}
.recruitp_top_pc{
	display: none;
}
	
.recruitp_top_sp{
	display: block;
	width:100%;
}

.recruitp_fontpaint{

	width:30%;
	left:8%;
	top:40%;
}

.recruitp_catch{
	margin: 0 auto 25px;
	padding-top: 45px;
	position: static;
	font-size: 3.4rem;
	color:#000;
	text-align: center;
	line-height: 1.4;
}

.recruitp_body{
	margin-top: 0;
	margin-bottom: 45px;
	font-size: 1.05rem;
}
	
.recruitp_img_pc{
	display: none;
}

.recruitp_img_sp{
	margin:0 0 25px;
	width: 100%;
	display: block;
}

.recruit_content{
	width:100%;
	margin: 0 auto 100px;
	flex-direction: column;
}
	
.recruitp_img_wrap{
	width:100%;
}

.recruit_den{
	width: 100%;
	margin-left: 3%;
	font-size: 2.5rem;
}

.recruit_hokori{
	font-size: 2.5rem;
}
	
.order1 {
  	order: 1;
}
	
.order2 {
  	order: 2;
}
	
.order3 {
 	order: 3;
}
	
.order4 {
 	order: 4;
}
	
.brsp{
	display: block;
}

.den_catch{
	margin:0 auto;
}


.den_paint{
	width: 30%;
	position:absolute;
	bottom:-65%;
}

.den_paint2{
	width: 30%;
	position:absolute;
	right:7%;
	bottom:-40%;
}

/*--------------------------------------
 *
 *recruitpage/treatment/
 *
 *------------------------------------*/
#treatment{		
}

.taigu{
	margin: 45px auto 60px;
	width:95%;
	padding:20px auto 20px;
}

.taigu_icon_wrap{
	margin: 0 auto;
	width:15%;
	height:80px;
	top:60px;
	right:20%;
}

.taigu_icon{
	margin-right: 10px;
}

.taigu_title{
	margin:0 auto 20px;
	font-size: 2rem;
}

	
.taigu_price{
	font-size: 1.8rem;
}

.taigu_attention{
	font-size: 1rem;
}

.taigu_font{
	font-size: 1.3rem;
}

.taigu_font td{
	padding-right: 20px;
	padding-bottom: 10px;

}

.taigu_wrap{
	padding: 10px;
	margin:0 10px 25px;
	background-color: #fff;
	border-radius: 15px;
	
}

.job_part{
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	padding-top: 30px;
	padding-bottom: 10px;
}

.taigu_catch{
	font-size:1.8rem!important;
}

.taigu_catch span{
	padding-top: 10px;
	padding-right: 20px;
}



/*--------------------------------------
 *
 *recruitpage/contact/
 *
 *------------------------------------*/
.bosyu_catch{
	width:80%;
	margin:0 auto 0;
}

.bosyu_tel{
	width:70%;
	margin:0 auto 45px;
}


/*--------------------------------------
 *
 *delivery/
 *
 *------------------------------------*/

.delivery{
	width:80%;
	margin:0 auto 100px;
}


.delivery-body{
	text-align: left;
	margin:20px auto 0;
	letter-spacing: 0.1rem;
	line-height: 1.5;
}

.delivery-body span{
	font-weight: bolder;
	color: red;
}

.delivery-content{
	font-size:1.5rem;
	width:90%;
	margin:5px auto 0;
	text-align: left;
}

.delivery-phone{
	display:block;
	width:100%;
	text-align: center;
	margin:10px auto 0;
	padding:0;
}
.delivery-emergency{
	font-size:1.2rem;
	margin: 20px auto 30px;
	width:95%;
	padding:10px;
	border:solid 1px #8f0000;
	border-radius:10px;
	color:#8f0000;
	text-align: left;
	}

.delivery-excuse{
	text-align: left;
	font-size:1.2rem;
}
	


.howtoeat{
	margin:20px auto 0;
	font-weight: bold;
	font-size:1.8rem;
}

.howtoeat-text{
	color:#8f0000;
}

.shipping-title{
	margin:25px auto 5px;
	font-weight: bold;
}

.shipping-table{
	margin:0 auto;
	width:90%;
}

.shipping-free{
	font-weight: bold;
	color:#8f0000;
}
	
.yubin-title{
	font-weight: bold;
}

.yubin-table{
	font-size:1.2rem;
	margin:0 auto;
	width:100%;
}
	
}	
	
	

/*--------------------------------------
 *
 *for responsive sp_s/
 *
 *------------------------------------*/

@media screen and (max-width:330px){

.catch_main{
	font-size: 3rem;
}

}

/*--------------------------------------
 *
 *for responsive sp_m/
 *	
 *------------------------------------*/

@media screen and (max-width:450px){

.catch_main_box{
	padding-top:3%;}
	}
	
/*--------------------------------------
 *
 *トップのレスポンシブ
 *	
 *------------------------------------*/
	

@media screen and (max-width:1300px){
.top_float{
	width: 35%;
}
	
.catch_main{
height: 100%;
}
	}
	
@media screen and (max-width:1150px){
	
.top_float{
	width: 50%;
}

.catch_main_box{
	width:57%;
	height: 100%;
}

.catch_main{
	width:45%;
	padding-top:430px;
	z-index: 30;
	margin:0 auto;
	font-size: 5.5rem;
}

.copy_main{
	width:45%;
	padding-top:430px;
	float: left;
	font-size:2rem;
	line-height: 1.7;
}
	}

@media screen and (max-width:768px){
.top_float{
	width: 50%;
	top:-50px;
}
	
.top_smoke{
	width:80%;
	left:15%;
	top:-160px;
	opacity: 0.5;
}
	
.sns_icon{
	display:none;
}


.catch_main_box{
	margin:0 auto 90px;
	width:60%;
}

.catch_main{
	width:48%;
	padding-top:180px;
	z-index: 30;
	margin:0 auto;
	font-size: 4.5rem;
	height:400px;

}

.copy_main{
	width:48%;
	padding-top:180px;
	float: left;
	font-size:1.8rem;
	line-height: 1.7;
}
	
	}

@media screen and (max-width:800px){
	
.top_smoke{
	width:80%;
	left:15%;
	top:-250px;
	opacity: 0.5;
}
	
.catch_main{
	font-size: 3.7rem;
	height:400px;
}

.copy_main{
	width:48%;
	font-size:1.4rem;
}
	
}

@media screen and (max-width:450px){
.top_float{
	width: 70%;
	top:-50px;
}
	
.top_smoke{
	width:80%;
	left:15%;
	top:-180px;
	opacity: 0.5;
}
	


.catch_main_box{
	margin:0 auto 90px;
	width:80%;
}

.catch_main{
	width:45%;
	padding-top:100px!important;
	z-index: 30;
	margin:0 auto;
	height:270px;
	font-size: 3.4rem;
}

.copy_main{
	width:45%;
	padding-top:100px!important;
	float: left;
	font-size:1.2rem;
	line-height: 1.7;
}
	
	
}
	
	