@charset "utf-8";

/* ******************************************************************************
	Normalize.css
****************************************************************************** */

html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}progress{vertical-align:baseline}template,[hidden]{display:none}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit;font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}button,input,select,textarea{font:inherit;margin:0}optgroup{font-weight:700}button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:.54}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}

/* ******************************************************************************
	Global
****************************************************************************** */
body {
	box-sizing: border-box;
	color: #333;
    font-size:62.5%; 
	font: Verdana,"Sawarabi Gothic","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"游ゴシック",YuGothic,sans-serif;
    letter-spacing: 0px;
    background-color: #fff;
    /*border: 2px solid #f00;*/
    vertical-align: bottom;
}

li{
    list-style: none;
}
#wrapper {
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    min-width: 920px;
    margin: 0 auto;
    height: auto;
    /*border: 2px solid #0f0;*/
    /*background-image: url(../pict/back4.jpg);*/
    background-size: contain;
    background-repeat: repeat-y;
    background-position: left;
}


/* ******************************************************************************
	header
****************************************************************************** */
header{
}
#front{
    position:relative;
    top: 0;
    width: 100%;
    height: 100vh;
    padding-bottom: 10px;
    border-bottom: 0.5px solid #333;
    background-image: url(../pict/topBack.jpg);
    background-size: cover;
}

#mainLogo{
  width: 100%;
  height: 100vh;
  position: absolute;
}
#logo{
    display: none;
    opacity: 0;
    position: absolute;
    z-index: 3;
    width: 450px;
    height:auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
#next1{
    position: absolute;
    bottom: 6%; left: 4%; z-index: 3;
    opacity: 0;
}
#next2{
    display: none;
}

.mini{
    width: 2%;
	animation: rumble 1.5s linear infinite;
}
 
@keyframes rumble{
	0%	{transform:translate(0,0);}
	10%	{transform:translate(0,20px);}
	25%	{transform:translate(0,10px);}
	40%	{transform:translate(0,20px);}
    50%	{transform:translate(0,15px);}
    70%	{transform:translate(0,20px);}
	100%{transform:translate(0,0px);}
}
.mini:hover{
    animation: none;
}
#backBox{
    overflow: hidden;
    width: 100%;/* トリミングしたい枠の幅 */
    height: 100vh;/* トリミングしたい枠の高さ */
    position: relative;
    top: 0; 
    
}
#back{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-width:1000px;
}
#backMobile{
    display: none;
}
.MainSnsArea{
    position: fixed;
    top: calc( 50% - 30px ); left: 10px;
    z-index: 30;
    width: 130px;
    margin-left: 0;
}
.sns1{
    overflow: hidden;
}
.sns2{
    overflow: hidden;
}
.line{
    float: left;
    width: 20px;
    margin-top: 30px;
    margin-right: 10px;
    /*border: 1px solid #044795;*/
    border: 1px solid #000;
}
.sns{
    float: left;
    width: 30px;
    height: 30px;
    margin-top: 15px;
    /*border: 1.5px solid #044795;*/
    border: 1.5px solid #000;
    border-radius: 50% 50% 50% 50%; 
    text-align: center;
}
.sns:hover{
    opacity: 0.5;
}
.icon1{
    /*border: 1px solid #f00;
    color: #044795;*/
    color: #000;
    padding-top: 6px;
    padding-bottom:4px;
    padding-left: 2px;
}
.icon2{
    /*border: 1px solid #f00;
    color: #044795;*/
    color: #000;
    padding-top: 5px;
    padding-bottom:5px;
    padding-left: 3px;
}
/* ******************************************************************************
   nav
****************************************************************************** */
#blackLogo{
    width: 12%;
    min-width: 120px;
    margin: 20px auto;    
}
#minlogo{
    width: 100%;
    text-align: center;
}
#navi{
    border-top: 0.5px solid #333;
    border-bottom: 0.5px solid #333;
}
.topMenu{
    overflow: hidden;
    width: 70%; margin: 0 auto;
    padding-right: 10px;
}
.topMenu li{
    float: left;
    margin-right: 5px;
    width: calc((100% - 25px) /6);
    text-align: center;
}
.topMenu li:last-child{
    margin-right: 0;
    border-bottom: 3px solid rgba(255, 255, 255, 0);
}
.topMenu a {
    /*border: 1px solid #000; */
    position: relative;
    padding: 25px;
    letter-spacing: 0.05em;
}
.topMenu li:hover{
    border-bottom: 3px solid #F8B500;
}
#nav3:hover{
    border-bottom: none;
}
#menuLevel2{
    /*border: 1px solid #aaa;*/
    overflow: hidden;
}
.topNav ul li ul{
	display: none;
}
.topNav ul li:hover ul{
	display: block;
    position: absolute;
    width: 160px;
    height: 300px;
}
#secondMenu{
    /*border: 1px solid #000;*/
    float: left;
    position: relative;
    left: -50px;
    width: 210px;
    height: 25px;
    background-color: #ffecba;
    border-bottom: 3px solid #ffecba;
    padding-top: 5px;
}
#secondMenu:hover{
    background-color: #F8B500;
}

.topMenu a{
    font-family: "Sawarabi Gothic","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"游ゴシック",YuGothic,sans-serif;
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
}
.topMenu dd{
    color: #F8B500;
}
.topMenu a:hover{
    color: #888;
}
#humburgerMenu{
    display: none;
}
#navi2{
    display: none; 
    background-color: #000;
    width: 100%;
    position:fixed; top: 0; left: 0; z-index: 10;
}
#navi2 a{
    color:#fff;
}
#nav26{
    border-bottom: none;
}
#nav23:hover{
    border-bottom: 3px solid #000;
}
#secondMenu a{
    color: #000;
}
#navi3{
    display: none;
}
.ptop{
    display: none;
    position: fixed;
    z-index: 5;
    bottom: 50px;
    right: 30px;
    width: 100px; height: 100px;
    background-color: #F8B500;
}
.ptop img{
    width: 100px;
}
.ptop img:hover{
    animation: rumble2 1s linear;
}
@keyframes rumble2{
	0%	{transform:translate(0,0);}
	10%	{transform:translate(0,-20px);}
	25%	{transform:translate(0,-10px);}
	40%	{transform:translate(0,-20px);}
    50%	{transform:translate(0,-15px);}
    70%	{transform:translate(0,-20px);}
	100%{transform:translate(0,0px);}
}
.ptop2{
    display: none;
    position: fixed;
    z-index: 5;
    bottom: 50px;
    right: 30px;
    width: 100px; height: 100px;
    background-color: #F8B500;
}
.ptop2 img{
    width: 100px;
}
.ptop2 img:hover{
    animation: rumble2 1s linear;
}
@keyframes rumble2{
	0%	{transform:translate(0,0);}
	10%	{transform:translate(0,-20px);}
	25%	{transform:translate(0,-10px);}
	40%	{transform:translate(0,-20px);}
    50%	{transform:translate(0,-15px);}
    70%	{transform:translate(0,-20px);}
	100%{transform:translate(0,0px);}
}
#ami{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top:0; right:0;
    z-index: 9;
    background-color: rgba(255, 255, 255, 0.71);
}


/* ******************************************************************************
   main
****************************************************************************** */
main{
    font-size: 1rem;
    letter-spacing: 0.1rem;
}

/* ******************************************************************************
   news
****************************************************************************** */
#news{
    width: 75%;
    height: auto;
    margin: 70px auto;
    font-size:1rem;
}
.newsTitle{
}
.banner{
    width: 100%;
}
.bannerM{
    display: none;
}
.LineLink{
    display: none;
}
.Oshirase{
    background-image: url(../images/bell.png);
    background-repeat: no-repeat;
    padding-left: 20px;
}
.newsColumn{
    overflow: hidden;
    font-size:0.8rem;
}
.newsData{
    width: 9%;
    float: left;
}
.newsSentence{
    width: 90%;
    float: right;
}
/* ******************************************************************************
   about
****************************************************************************** */
#about{
    width: 100%;
    height: auto;
    background-image: url(../images/logoBack.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
    margin-top: 50px;
    padding-top: 100px;
    /*border: 1px solid #000;*/
}
#title1{
    width: 45%;
    border-bottom: 3px solid #444;
    overflow: hidden;
}
.midashi1{
    width: 70%;
    float: right;
}
.content1{
    overflow: hidden;
    width: 80%;
    margin: 30px auto;
    /*border: 1px solid #f00;*/
}
.area11{
    position: relative;
    float: left;
    width: 47%;
    margin: 0 3%;
    padding-bottom: 0;
}
.area11 p{
    font-size: 1rem;
    letter-spacing: 0.2rem;
    font-family: sans-serif;
}
p.kc{
    font-size: 1.3rem;
}
.border1{
    width:100%;
    height: 25px;
    background-image: url(../images/borderUp.png);
    background-size: cover;
}
.border2{
    width:100%;
    height: 25px;
    margin-bottom: 30px;
    background-image: url(../images/borderDown.png);
    background-size: cover;
}
.kc2{
    background-image: url(../images/hishi.png);
    background-repeat: no-repeat;
    padding-left: 22px;
}
#btn{
    display: none;
}
#btn2{
    display: none;
}
.area12{
    float: left;
    width: 45%;
    /*border: 1px solid #0f0;*/
    overflow: hidden;
}
.area12 img{
    float: left;
    padding-bottom: 3%;
}
.aboutPict1{
    width: 100%;
    height: 100%;
}
.aboutPict2,.aboutPict3{
    width: 48.5%;
}
.aboutPict2{
    padding-right: 3%;
}

/* ******************************************************************************
    toriKara
****************************************************************************** */
#toriKara{
    width: 100%;
    height: 100vh;
    padding-bottom: 100px;
    margin-top: 100px; 
    padding-top: 50px;
    background-image: url(../images/ishigaki2.png);
    background-repeat: no-repeat;
    background-position: left 100%;
    background-size: 100%;
    /*border: 1px solid #000;*/
}
#title2{
    width: 100%; 
    padding-right: 10%; 
    overflow: hidden;
}
#title2 h2{
    overflow: hidden;
    width: 45%;
    border-bottom: 3px solid #333;
    float: right;
}
.midashi2{
    width: 70%;
}
.content2{
    position: relative;
    float: none;
    width:80%;
    margin: 50px auto;
    overflow: hidden;
    /*border: 1px solid #f00;*/
}
.area22{
    overflow: hidden;
}
.area222{
    width: 90%;
}
.pu{
    width: 100%;
    font-size: 1.5rem;
    color: #f00;
    font-weight: bold;
}
.hatena{
    font-size: 1.3rem;
}
.area22 h3{
    text-align: center;
    font-family: "Hannari", serif;
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
}
.box1,.box2,.box3{
    width: 32%;
    /*border: 1px solid #0f0;*/
    float: left;
}
.box1,.box2{
    margin-right: 2%;
}
.area22 img{
    width:70%;
}
.karaagePict{
    text-align: center;
}
.area22 p{
    width: 70%;
    margin: 10px auto;
}
.karaM{
    display: none;
}
.toMenu{
    width: 90%;
    margin: 0 auto;
    padding: 20px 20px;
       
}
.toMenu a{
    font-size: 0.9rem;
    text-decoration: none;
    color: #626262;
}
.toMenu a:hover{
    color: #F8B500;
}
.readMore{
    position: absolute;
    right: 5%; bottom: 0;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border:1px solid rgba(255, 0, 0, 0.7);
    border-radius: 50% 50% 50% 50%; 
}
.readMore:hover{
    border:2px solid #fff;
}
.RM{
    width: 100px;
    height: 100px;
    
}
/* ******************************************************************************
    toriKara2
****************************************************************************** */
#torikara2{
    width: 100%;
    margin: 100px 0;
}
.contentW2{
    width:80%;
    margin: 0 auto;
    /*border: 1px solid #f00;*/
}
.areaW21{
    overflow: hidden;
    width: 100%;
    /*border:1px solid #0f0;*/
}
.areaW22{
    overflow: hidden;
    width: 100%;
    /*border:1px solid #0f0;*/
}
.namae_area1{
    width: 55%;
    float: right;
    margin: 20px;
    /*border: 1px solid #00f;*/
}
.pictW21{
    overflow: hidden;
    width: 40%;
    float: left;
    /*border: 1px solid #000;*/
}
.namae_area2{
    width: 55%;
    float:left;
    margin: 20px;
    /*border: 1px solid #00f;*/
}
.pictW22{
    overflow: hidden;
    width: 40%;
    float: right;
    /*border: 1px solid #000;*/
}
.pW211{
    width: 100%;
}
.pW212{
    width: calc(50% - 5px);
    float:left;
    margin-right: 5px;
}
.pW213{
    width: calc(50% - 5px);
    float: left;
}
.contentW2 img{
    width: 100%;
}
/* ******************************************************************************
    menu
****************************************************************************** */
#menu{
    width: 100%;
    margin-top: 150px;
    padding-top: 50px;
    background-image: url(../images/kumo.png);
    background-repeat: no-repeat;
    background-position: top 100%;
    background-size: 100%;
}
#title3{
    width: 35%;
    border-bottom: 3px solid #444;
    overflow: hidden;
}
.midashi3{
    width: 95%;
    float: right;
}
.midashi32{
    display: none;
}
#menuMobileArea{
    display: none;
}
#menuFukae{
    margin: 60px auto;
    padding: 30px 0 50px 0;
    background-color: rgba(245, 232, 220, 0.7);
}
#menuShigino{
    margin: 60px auto;
    padding: 30px 0 50px 0;
}
h3{
    margin-top: 60px;
    font-size: 2rem;
}
.content3{
    width: 80%;
    margin: auto;
}
.agetate{
    overflow: hidden;
    margin-bottom: 20px;
}
/*
.agetateLeft{
    overflow: hidden;
    width: 48%;
    float: left;
}
.agetateRight{
    width: 48%;
    float: right;
    overflow: hidden;

.agetateRight img{
    width: 80%;
    margin-left: 30px;
}
*/
.agetateLeft{
    overflow: hidden;
    width: 60%;
    float: left;
}
.red{
    color: #f80000;
    font-size: 1.2rem;
    margin-left: 30px;
    margin-bottom: 0;
}
.time{
    width: 90%;
    float: left;
    margin-left: 30px;
    margin-top: 0;
}
.agetateRight{
    /*border:1px solid #000;*/
    width: 30%;
    margin-top: 20px;
    margin-right:60px;
    padding: 10px;
    float: right;
    background-color:rgba(248, 181, 0, 0.5)
}
.agetateRight p{
    margin:0;
}
.shopLink{
    padding-top: 20px;
}
.menuarea1{
    border: 1p solid #f00;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}
.mainMenu{
    width: 100%;
}
.potatoMenu{
    width: 100%;
}
.menu1,.menu2,.menu3{
    width: 33.3%;
    float:left;
}
.names p{
    font-family: "Hannari", serif;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
}
.roundPict{
    width: 100%;
}
.roundPict img{
    width: 80%;
    margin: 0 10%;
    border-radius: 50% 50% 50% 50%;   
}
.value p{
    font-size: 0.8rem;
    text-align: right;
}
.menuarea2{
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}
.menu4,.menu5{
    width: 48%;
    float:left;
}
.names4 p,.names5 p{
    font-size: 1.1rem;
    font-weight: bold;
}
.roundPict{
    width: 100%;
}
.rectPict img{
    width: 80%;
    margin: 0 10%;   
}
.value2 p{
    font-size: 0.8rem;
    text-align: right;
    margin-right: 10%;
}

/* ******************************************************************************
    shop
****************************************************************************** */
#shop{
    width: 100%;
    height: auto;
    padding-bottom: 100px;
    margin-top: 150px; 
    padding-top: 50px;
    background-image: url(../images/sun.png);
    background-repeat: no-repeat;
    background-position: 95% 5%;
    background-size: 55%;
}
#title4{
    width: 100%; 
    padding-right: 10%; 
    overflow: hidden;
}
#title4 h2{
    overflow: hidden;
    width: 45%;
    border-bottom: 3px solid #333;
    float: right;
}
.midashi42{
    display: none;
}
.midashi4{
    width: 70%;
}
.content4{
    float: none;
    width: 70%;
    margin: 50px auto;
    overflow: hidden;
}

.shopLeft,.shopLeft2,.shopLeft3{
    width: 48%;
    float: left;
}
.shopLeft img{
    width:90%;
    padding:5% 5% 0 5%;
}
.shopLeft iframe{
    width:90%;
    padding:5% 5% 0 5%;
}
.shopLeft p{
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    font-family: "Sawarabi Gothic","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"游ゴシック",YuGothic,sans-serif;
    text-align: right;
    padding-right: 5%;
}
.shopLeft a{
    font-size: 1rem;
    color: #F8B500;
    text-decoration: none;
}
.shopLeft a:hover{
    color: rgba(50, 50, 50, 0.5);
    text-decoration: none;
}
.shopRight{
    width: 48%;
    float: left;
}
.shopRight img{
    width: 90%;
    padding: 5%;
}
.shopRight p{
    font-family: serif;
    font-size: 1rem;
}



.shopLeft2 img{
    width:90%;
    padding:5% 5% 0 5%;
}
.shopLeft2 iframe{
    width:90%;
    padding:5% 5% 0 5%;
}
.shopLeft2 p{
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    font-family: "Sawarabi Gothic","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"游ゴシック",YuGothic,sans-serif;
    text-align: right;
    padding-right: 5%;
}
.shopLeft2 a{
    font-size: 1rem;
    color: #F8B500;
    text-decoration: none;
}
.shopLeft2 a:hover{
    color: rgba(50, 50, 50, 0.5);
    text-decoration: none;
}
.shopRight2{
    width: 48%;
    float: left;
}
.shopRight2 img{
    width: 90%;
    padding: 5%;
}
.shopRight2 p{
    font-family: serif;
    font-size: 1rem;
}


.shopLeft3 img{
    width:90%;
    padding:5% 5% 0 5%;
}
.shopLeft3 iframe{
    width:90%;
    padding:5% 5% 0 5%;
}
.shopLeft3 p{
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    font-family: "Sawarabi Gothic","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"游ゴシック",YuGothic,sans-serif;
    text-align: right;
    padding-right: 5%;
}
.shopLeft3 a{
    font-size: 1rem;
    color: #F8B500;
    text-decoration: none;
}
.shopLeft3 a:hover{
    color: rgba(50, 50, 50, 0.5);
    text-decoration: none;
}
.shopRight3{
    width: 48%;
    float: left;
}
.shopRight3 img{
    width: 90%;
    padding: 5%;
}
.shopRight3 p{
    font-family: serif;
    font-size: 1rem;
}


.shopName{
    width: 90%;
    margin-left: 5%;
    border-bottom: 2px solid #333;
}
.shopName p{
    font-weight: bold;
}
.shopInfo{
    width: 90%;
    padding: 0 5% 5% 5%;
}
.eatin{
    background-image: url(../images/eatin.png);
    background-repeat: no-repeat;
    padding-left: 20px; 
    padding-bottom: 20px;
}
.shopSub{
    background-color: black;
    color: white;
    text-align: center;
    font-family: "Sawarabi Gothic";
}
/* ******************************************************************************
	recruit
****************************************************************************** */
#recruit{
    letter-spacing: normal;
    width: 100%;
    margin-top: 100px;
    padding-top: 50px;
}
#title5{
    width: 45%;
    border-bottom: 3px solid #444;
    overflow: hidden;
}
.midashi5{
    width: 95%;
    float: right;
}
.font_red{
    color: #dc143c;
}
.content5{
    width: 70%;
    margin: 50px auto;
    background-color: rgba(255, 255, 255, 0.7);
    /*border: 1px solid #f00;*/
}
.r_midashi{
    min-width: 600px;
    margin: 0 auto;
    /*width: calc(100% - 100px);*/
    padding-top: 50px;
    /*border: 1px solid #000;*/
}
.r_midashi p{
    
}
.r_midashi1{
    padding-top: 50px;
    color: #696969;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0;
    text-align: center;
}
.r_midashi01{
    color: #012b79;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0;
    text-align: left;
}
.r_midashi2{
    padding-top: 30px;
    color: #696969;
    font-size: 1rem;
    text-align:left;
}
.r_gurafu{
    width: 40%;
}
.r_sample{
    width: 100%;
    padding-left:0;
}
.r_shosai1{
    margin-top: 20px;
    padding: 10px;
    margin-bottom: 50px;
    background-color: #f0ffff;
}
.r_shosai2{
    padding: 10px;
    margin-bottom: 50px;
    background-color: #f0ffff;
}
.rs_title_area{
    width: 60%;
}
.rs_title{
    min-width: 550px;
    font-size: 1.2rem;
    font-weight: bold;
    //*padding: 5px 5px 5px 10px;
    background-color: rgba(248, 181, 0, 0.4);
    border: 3px solid #F8B500;
    border-radius: 15px;**/
}
#btn_r1,#btn_r2{
    display: none;
}
.imp{
    color: #f00;
}
.udl{
    text-decoration: underline;
}
.oubo{
    padding: 0 0 20px 10px;
}
.oubo_title_area{
    width: 15%;
}
.oubo_title_area:hover{
    opacity: 0.5;
}
.oubo_title{
    margin-top: 50px;
    text-align: center;
    min-width: 100px;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 5px 5px 5px 10px;
    color: #fff;
    background-color: #6495ed;
    border-radius: 25px;
}
#sentence_r3{
    display: none;
}
.oubo_mail{
    font-size: 1.2rem;
    text-decoration: underline;
}
.oubo_mail span{
    color: #f00;
}
.oubo_naiyou{
    width: 500px;
    padding: 20px;
    background-color: azure;
}
.oubo_naiyou dd{
    font-size: 0.6rem;
    color: #777;
}
.gochui{
    padding-left: 10px;
    font-size: 0.8rem;
}
/* ******************************************************************************
    contact
****************************************************************************** */
#contact{
    width: 100%;
    height: 100vh;
    padding-bottom: 100px;
    margin-top: 150px; 
    padding-top: 50px;
}
#title6{
    width: 100%; 
    padding-right: 10%; 
    overflow: hidden;
}
#title6 h2{
    overflow: hidden;
    width: 45%;
    border-bottom: 3px solid #333;
    float: right;
}
.midashi62{
    display: none;
}
.midashi6{
    width: 70%;
}
.content6{
    float: none;
    width: 70%;
    margin: 50px auto;
    overflow: hidden;
}
.mail{
    font-size: 1.3rem;
    text-decoration: underline;
    color: #d80202;
}
.sorry{
    font-size: 0.8rem;
}

/* ******************************************************************************
	law
****************************************************************************** */
#law{
    width: 100%;
    padding-bottom: 100px;
    margin-top: 150px; 
}
.content7{
    float: none;
    width: 50%;
    margin: 50px auto;
    overflow: hidden;
}
.lawtitle{
    font-size: 1.5rem;
}
.lawdata{
    font-size: 1rem;
    color: #696969;
    font-weight: 600;
    letter-spacing: normal;
    margin: 0;
    /*border: 3px solid #F8B500;*/
}

.lawans{
    font-size: 0.8rem;
    margin-bottom: 50px;
    letter-spacing: normal;
    /*border: 3px solid #000;*/
}
/* ******************************************************************************
	footer
****************************************************************************** */
footer{
    background-color: #fdc427;
    border: 1px solid #fdc427;
}
#footerNavi{
    width:90%;
    font-size: 0.8rem;
    margin: 0 auto;
    border: none;
}
.footMenu{
    overflow: hidden;
    width: 70%;
    margin: 50px 15%;
}
#footerNavi li{
    float: left;
    text-align: center;
    width: calc(80% / 6);
}
#footerNavi a{
    text-decoration: none;
    color: #444;
}
#footerNavi a:hover{
    color: #888;
}

.footMenu dd{
    font-size:0.4rem;
    color: #fff;
}
.cr{
    text-align: center;
    margin-bottom: 5%;
    color: #444;
}



/* ******************************************************************************
	RESPONSIVE
****************************************************************************** */

@media screen and (min-width: 1500px) {
    #logo{
        width: 500px;
    }
    
}

/* ****************************************************************************** */




/* ******************************************************************************
	RESPONSIVE
****************************************************************************** */

@media screen and (max-width: 1000px) {
    #logo{
        width: 300px;
    }
    
}

/* ****************************************************************************** */




/* ******************************************************************************
	RESPONSIVE
****************************************************************************** */

@media screen and (max-width: 480px) {
/* ******************************************************************************
	(R480)Global
****************************************************************************** */
body{
    min-width: 200px;
}
#wrapper {
    box-sizing: border-box;
    width: 100%;
    min-width: 200px;
    overflow: hidden;
}
/* ******************************************************************************
	(R480)head
****************************************************************************** */    
#front{
    padding-bottom:0;
    border-bottom: 5px solid #fff;
    background-image: url(../pict/topBackM.jpg);
    background-size: cover;
}

    
#logo{
    display: block;
    width: 300px;
}


#next1{
    display: none;
    
}
#next2{
    display: block;
    position: absolute;
    bottom: 15%; left: 40%; z-index: 3;
    opacity: 0;
    width: 20%;
}
.mini2{
    width: 2%;
	animation: rumble 1.5s linear infinite;
}
.mini2:hover{
    animation: none;
}

#backBox{
    width: 100vh;
}
#back{
    display: none;
}
#backMobile{
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
}
.MainSnsArea{
    display: none;
}
.blackLogo{
    display: none;
}
/* ******************************************************************************
   (R480)nav
****************************************************************************** */
#navi{
    display: none;
}
#navi3{
    background-color: #F8B500;
    width: 70%;
    height:100vh;
    position:fixed; top: 0; right: 0; z-index: 10;
}
#navi3 ul{
    margin: 50px auto;
    margin-top: 70px;
}
#navi3 li{
    width: 200px;
    text-align: inherit;
    margin-top: 30px;
    margin-left: -20px;
}
#navi3 li:last-child{
    border-bottom: none;
}
#navi3 a{
    font-size: 0.8rem; 
    letter-spacing: 0.5rem;
    color: #fff;
    font-weight: bold;
}
    a.app{
        color:#f00;
        font-weight: bold;
    }
#humburgerMenu{
    display: block;
    width: 50px;
    position: fixed;
    top: 0;
    right:0;
    z-index: 20;
} 
#humburgerMenu img{
    width: 100%;
}
.snsArea{
    overflow: hidden;
    width: 130px;
    margin-left: 30px;
}
.sns{
    float: left;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    border: 1px solid #fff;
    border-radius: 50% 50% 50% 50%; 
    text-align: center;
}
.icon1{
    /*border: 1px solid #f00;*/
    color: #fff;
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 8px;
}
.icon2{
    /*border: 1px solid #f00;*/
    color: #fff;
    padding-top: 8px;
    padding-bottom:8px;
    padding-left: 8px;
}   
    
.ptop,.ptop2{
    bottom: 30px;
    width: 50px; height: 50px;
}
.ptop img,.ptop2 img{
    width: 50px;
}
/* ******************************************************************************
	(R480)main-content1
****************************************************************************** */
main{
    letter-spacing: 0.1rem;
}
    
/* ******************************************************************************
   (R480)news
****************************************************************************** */
#news{
    /**background-color: rgba(248, 181, 0, 0.27);**/
    padding:10px;
    width: 80%;
    margin: 0px auto;
    margin-top: 50px;
    font-size:0.8rem;
}
.Oshirase{
    background-image: url(../images/bell.png);
    background-repeat: no-repeat;
    padding-left: 20px;
    padding-bottom: 10px;
}
.banner{
    display: none;
}
.bannerM{
    display: block;
    width: 100%;
}
.LineLink{
    display: block;
    text-align: center;
    margin: 40px;
}
    
.btnY{
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
  color: #555;
  background-color: #fff100;
  /**border-bottom: 5px solid #ccc100;**/
  padding: 15px;
}
.btnY:active {
  margin-top: 3px;
  color: #000;
  background: # fff20a;
  border-bottom: 2px solid #ccc100;
}
.newsColumn{
    font-size:0.7rem;
}
.newsData{
    width: 100%;
    float: none;
}
.newsSentence{
    width: 100%;
    float: none;
}    
    
/* ******************************************************************************
   (R480)about
****************************************************************************** */
#about{
    height: auto;
    background-size: 80%;
    margin-top: 0;
    padding-top: 0;
}
#title1{
    width: 90%;
    border-bottom: 1px solid #444;
}
.midashi1{
    width: 100%;
    float: left;
}
.content1{
    overflow: none;
    width: 90%;
    margin: 0 auto;
}
.area11{
    float: none;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 0;
}
.border1{
    margin-top: 20px;    
}
.border2{
    margin-bottom: 20px;    
}
#btn{
    display: block;
    font-size: 1rem;
    color: #003990;
}
#btn2{
    display: block;
    font-size: 1rem;
    color: #003990;
    text-align: right;
}
#sentence{
    display: none;
    padding: 10px;
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.1);
}
p.kc{
    font-size: 1rem;
    letter-spacing: 0.1rem;
}
p.kc2{
    font-size: 0.8rem;
    letter-spacing: normal;
}
.kc2{
    background-image: none;
    padding-left: 5px;
}
.area12{
    float: none;
    width: 100%;
}
.readMoreA{
    position: static;
    margin-top: 0px;
}
/* ******************************************************************************
    (R480)toriKara
****************************************************************************** */  
#toriKara{
    height: auto;
    margin-top: 0;
    padding-bottom: 0;
    background-image: none;
}
#title2 h2{
    width: 90%;
    border-bottom: 1px solid #333;
}
.midashi2{
    width: 110%;
    float: right;
    margin-right: -40%;
}
.content2{
    width:100%;
    margin: 0px auto;
    position: static;
}
.area22{
    overflow: hidden;
}
.area22 h3{
    width: 100%;
}   
.box1,.box2,.box3{
    margin-top: 50px;
    background-image: url(../images/ishigaki2.png);
    background-repeat: no-repeat;
    background-position: 0 110px;
    background-size: 200%;
    width: 100%;
}
.box1,.box2{
    margin-right: 0;
    overflow: hidden;
}
.karaagePict{
    overflow: hidden;
    margin-right: 20%;
    width: 80%;
    height: 300px;
}

#karaagePict2{
    margin-right: 0;
    margin-left: 20%;
}
.area22 img{
    position: relative;
    float:left;
    width: 100%;
    height: 300px;
    min-width: 200px;
     top: 0;
    left: 0;
}
.karaagePict{
    text-align: center;
}
.name1,.name2,.name3{
    width: 100%;
    border: 1px solid #f00;
}
.area22 h3{
    font-size: 1.5rem;    
}
.area22 p{
    font-size: 0.8rem;
} 
.karaD{
    display: none;    
}
.karaM{
    display: block;
}
.readMore{
    position: static;
    margin-top: 0px;
}
.toMenu{
    width: 50%;
    float: right; 
}
.toMenu a{
    font-size: 0.8rem;
}
/* ******************************************************************************
    (R480)toriKara2
****************************************************************************** */
#torikara2{
    width: 90%;
    margin: 100px auto;
}
.contentW2{
    width:100%;
    margin: 0 auto;
    /*border: 1px solid #f00;*/
}
.contentW2 p{
    font-size:0.8rem; 
}
.areaW21{
    overflow: auto;
    width: 100%;
    padding-bottom: 5px;
    background-color: rgba(68, 68, 68, 0.1);
    /*border:1px solid #0f0;*/
}
.areaW22{
    overflow: auto;
    width: 100%;
    margin-top:40px;
    padding-bottom: 5px;
    background-color: rgba(68, 68, 68, 0.1);
    /*border:1px solid #0f0;*/
}
.namae_area1{
    width: 96%;
    float: none;
    margin: 0 auto;
    /*border: 1px solid #00f;*/
}
.pictW21{
    overflow: hidden;
    width: 96%;
    margin: 0 auto;
    float: none;
    /*border: 1px solid #000;*/
}
.namae_area2{
    width: 96%;
    float: none;
    margin: 0 auto;
    /*border: 1px solid #00f;*/
}
.pictW22{
    overflow: auto;
    width: 96%;
    margin: 0 auto;
    float: none;
    /*border: 1px solid #000;*/
}
.pW211{
    width: 100%;
}
.pW212{
    width: calc(50% - 5px);
    float:left;
    margin-right: 5px;
}
.pW213{
    width: calc(50% - 5px);
    float: left;
}
.contentW2 img{
    width: 100%;
}
/* ******************************************************************************
    (R480)menu
****************************************************************************** */
#menu{
    margin-top: 0;
    background-image: url(../images/kumo2.png);
    background-position: 0 550px;
} 
#title3{
    width: 50%;
    border-bottom: 1px solid #444;
}
.midashi3{
    display: none;
}
.midashi32{
    display: block;
    width: 100%;
    float: left;
    margin: 0;
}
#menuMobileArea{
    display: block;
    margin-top:20px;
}
.chooseShop{
    border:1px solid #fff;
    width:70%;
    margin: 0 auto;
    padding-right: 5%;
}
.chooseShop li{
    margin: 20px;
    text-align: center;
    margin-left:0;
}
.chooseShop a{
    font-size: 0.9rem;
    font-weight: bold;
    color: #F8B500;
    text-decoration: none;
    
}
.content3{
    width: 100%;
    margin: 0 auto;
}
h3{
    margin-top: 60px;
    padding-left: 20px;
    font-size: 1.4rem;
}
.agetate{
    width: 90%;
    overflow: none;
    margin: 0 auto;
    border: 2px solid rgba(248, 181, 0, 0.5);
}
.agetateLeft{
    overflow: none;
    width: 100%;
    float: none;
    padding-top:10px;
    padding-left:10px;
}
.agetateRight{
    margin-top: 0;
    padding-top:5px;
    width: 100%;
    text-align: center;
    float: none;
    overflow: none;
}
    .agetateRight p{
        font-size: 0.8rem;
    }
.shopLink{
      padding-top: 0;  
}
/*.agetateRight img{
    width: 100%;
    margin-left: 0;
}*/
.red{
    width: 90%;
    margin: 0 auto;
    font-size: 1rem;
}
.time{
    width: 90%;
    margin: 10px auto;
    font-size: 0.8rem;
    float: none;
}
.menuarea1{
    overflow: none;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 50px;
}
.mainMenu{
    width: 100%;
}
.menu1,.menu2,.menu3{
    width: 100%;
    margin-bottom: 30px;
    float: none;
    position: relative;
}
.names{
    position: absolute;
    top: -10px;
    left:0;
    right:0;
}
.names p{
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 1px 1px 0.5px #000;
}
.roundPict img{
    width: 70%;
    margin: 0 15%;
}
.value p{
    position: absolute;
    bottom: 0;
    right: 0;
}
.menuarea2{
    width: 90%;
}
.menu4,.menu5{
    width: 100%;
    position: relative;
    float:none;
    margin-bottom: 40px;
}
.names4{
    position: absolute;
    top: 10px;
    left: 0;
}
.names5{
    position: absolute;
    top: 20px;
    right:0;
}
.names4 p,.names5 p{
    color: #444;
    font-size: 0.9rem;
    font-weight: normal;
}
.menu4 img{
    width: 80%;
    margin: 0 0 0 20%;   
}
.menu5 img{
    width: 80%;
    margin: 0 20% 0 0;   
}
    
.value4 p,.value5 p{
    font-size: 0.8rem;
    text-align:inherit;
    margin-right: 0;
}
.value4{
    position: absolute;
    top:40px;
    left:0;
}
.value5{
    position: absolute;
    top:50px;
    right:0;
}
/* ******************************************************************************
    (R480)shop
****************************************************************************** */   
#shop{
    height: auto;
    padding-bottom: 0;
    margin-top: 0; 
    padding-top: 50px;
    background-position: 95% 50px;
    background-size: 100%;
}
#title4 h2{
    width: 55%;
    padding-right: 20px;
    border-bottom: 1px solid #333;
}
.midashi42{
    display: block;
    width: 100%;
    float: right;
}
.midashi4{
    display: none;
}
.content4{
    width: 90%;
    overflow: none;
}
    #map{
        margin-bottom: 100px;
    }
.shopLeft img{
    width:90%;
    padding:5% 5% 0 5%;
}
.shopLeft iframe{
    width:90%;
    height: 250px;
    padding:5% 5% 0 5%;
}    
.shopLeft{
    width: 100%;
    float: none;
}
.maps img{
    display: none;
}
.shopLeft p{
    text-align: center;
}
.shopLeft a{
    padding: 2px 5px;
    border-top: 4px solid #F8B500;
}
.shopRight{
    width: 100%;
    float: none;
}
.shopRight img{
    width: 100%;
    padding: 0 auto;
}
    
  
.shop2{
    background-color: rgba(248, 181, 0, 0.28);
    padding-bottom: 5px;
}
.shopLeft2 img{
    width:90%;
    padding:5% 5% 0 5%;
}
.shopLeft2 iframe{
    width:90%;
    height: 250px;
    padding:5% 5% 0 5%;
}    
.shopLeft2{
    width: 100%;
    float: none;
}
.shopLeft2 p{
    text-align: center;
}
.shopLeft2 a{
    padding: 2px 5px;
    border-top: 4px solid #F8B500;
}
.shopRight2{
    width: 100%;
    float: none;
}
.shopRight2 img{
    width: 100%;
    padding: 0 auto;
}
    
    
.shopLeft3 img{
    width:90%;
    padding:5% 5% 0 5%;
}
.shopLeft3 iframe{
    width:90%;
    height: 250px;
    padding:5% 5% 0 5%;
}    
.shopLeft3{
    width: 100%;
    float: none;
}
.shopLeft3 p{
    text-align: center;
}
.shopLeft3 a{
    padding: 2px 5px;
    border-top: 4px solid #F8B500;
}
.shopRight3{
    width: 100%;
    float: none;
}
.shopRight3 img{
    width: 100%;
    padding: 0 auto;
}
    
    
    
.shopName{
    margin: 0 auto;
}
.shopName p{
    font-size: 0.9rem;
}
.shopInfo p{
    font-size: 0.8rem;
}
/* ******************************************************************************
	(R480)recruit
****************************************************************************** */   
#recruit{
    margin-top: 0;
    padding-top: 0;
}
#title5{
    width: 90%;
    border-bottom: 1px solid #444;
    overflow: none;
    margin-left: -80px;
}
.midashi5{
    width: 100%;
    float: none;
}
.content5{
    width: 90%;
    margin: 30px auto;
} 
.r_midashi{
    min-width: 100px;
    width: 100%;
    padding-top: 0;
}
 .r_midashi1{
    font-size: 1.5rem;
}
#sentence_r1{
    display: none;
}
#sentence_r2{
    display: none;
}
.rs_title_area{
    width: 100%;
}
.rs_title_area:hover{
    opacity: 0.5;
}
.rs_title{
    min-width: 300px;
}
#btn_r1,#btn_r2{
    display: block;
}
.kochira{
    text-align: center;
    font-size: 0.7rem;
    color: #F8B500;
}
.oubo{
    padding: 0 0 20px 0;
}
.oubo_title_area{
       margin-left: 10px; 
    }
.oubo_title_area:hover{
    opacity: 1;
}
.oubo_mail{
    font-size: 1rem;
}
.oubo_naiyou{
    width: 85%;
    margin: 0 auto;
}
/* ******************************************************************************
	(R480)contact
****************************************************************************** */       
#contact{
    height: auto;
    padding-bottom: 0;
    margin-top: 0; 
    padding-top: 50px;
}
#title6 h2{
    width: 55%;
    padding-right: 20px;
    border-bottom: 1px solid #333;
}
.midashi62{
    display: block;
    width: 100%;
    float: right;
}
.midashi6{
    display:none;
}
.content6{
    float: none;
    width: 85%;
    margin: 50px auto;
    overflow: hidden;
}
.mail{
    font-size: 1.3rem;
    text-decoration: underline;
    color: #d80202;
}
.sorry{
    font-size: 0.8rem;
}
/* ******************************************************************************
	(R)footer
****************************************************************************** */ 
#footerNavi{
    display: none;
}


    
    
    
    
    
    
}