/*
===================================================
	Reset
===================================================
*/
* {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

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

address {
  font-style: normal;
}

/*
===================================================
	Base Setting
===================================================
*/
body {
  line-height: 1.6em;
  letter-spacing: 0.05em;
  color: #333;
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif, "Sawarabi Mincho";
}

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

.font-mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
}

.font-gothic,
.font-gothic h1,
.font-gothic h2,
.font-gothic h3,
.font-gothic h4,
.font-gothic h5 {
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif !important;
}

.tb-visible,
.sp-visible {
  visibility: hidden;
  width: 0px;
  height: 0px;
  overflow: hidden;
  display: none;
}

.maxWidth {
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.maxWidth2 {
  max-width: 1050px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.maxWidth3 {
  max-width: 850px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

#header {
  padding: 20px 0px;
}

#header .inner {
  position: relative;
}

#nav {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 10;
  font-weight: bold;
}

#nav>ul>li {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

#nav>ul>li.subMenu:after {
  position: absolute;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-right: solid 2px #000;
  border-bottom: solid 2px #000;
  transform: rotate(45deg);
  left: 50%;
  margin-left: -0.3em;
  bottom: 0.1em;
}

#nav>ul>li a {
  display: block;
  padding: 15px 5px;
}

#nav>ul>li .subMenuList {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  height: 0px;
  font-size: 90%;
  left: 0px;
}

#nav>ul>li .subMenuList.active {
  transition: .5s;
  width: 250px;
  visibility: visible;
  opacity: 1;
  height: auto;
}

#nav>ul>li .subMenuList ul {
  position: relative;
  background: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.05);
}

#nav>ul>li .subMenuList ul li {
  border-bottom: solid 1px #ccc;
}

#nav>ul>li .subMenuList ul li a:hover {
  background: #eee;
  transition: .5s;
}

#main {}

#footer {
  background: #222222;
  color: #fff;
  padding: 40px 0px 100px;
}

#footer .logo img {
  width: 380px;
  height: auto;
}

#footer a {
  color: #fff;
}

#footer .copyright {
  font-size: 80%;
}

#footer .rightContent .box {
  border-bottom: solid 1px #555;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

#footer .rightContent .box p {
  margin-bottom: 1em;
}

#footer .rightContent .box ul {
  font-size: 80%;
}

#footer .rightContent .box ul li {
  margin-bottom: 0.5em;
}

#footer .rightContent .sns li {
  display: inline-block;
  padding: 5px;
}

#footer .contact a {
  /*position: relative;*/
  display: inline-block;
  /*background: #fff;*/
  color: #fff;
  padding: 20px 20px 20px 20px;
  border: 1px solid #fff;
}

#footer .contact a:after {
  position: absolute;
  /*content: "→";*/
  display: block;
  top: 20px;
  right: 20px;
}

/*#footer .contact a:hover{
 transition: .5s;
 color: #fff;
 background: #000;
}*/

#pagetop {
  position: fixed;
  z-index: 3;
  bottom: 10px;
  right: 10px;
  visibility: hidden;
  opacity: 0;
  border-radius: 2em;
  padding: 5px 20px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  background: #fff;
}

#pagetop:before {
  display: inline-block;
  content: "";
  border-bottom: #000 12px solid;
  border-left: transparent 8px solid;
  border-right: transparent 8px solid;
}

#pagetop.active {
  transition: 1s;
  visibility: visible;
  opacity: 1;
}

#pagetop a {
  color: #000;
}

.pan {
  font-size: 90%;
  border-bottom: solid 1px #ccc;
  padding: 5px 10px;
  vertical-align: middle;
}

.pan li {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.pan li a:after {
  display: inline-block;
  content: "";
  width: 0.4em;
  height: 0.4em;
  margin: 5px;
  border-right: solid 1px #aaa;
  border-bottom: solid 1px #aaa;
  transform: rotate(-45deg);
  vertical-align: middle;
}

.clearfix {
  overflow: hidden;
}

.fLeft {
  float: left;
}

.fRight {
  float: right;
}

.tLeft {
  text-align: left;
}

.tRight {
  text-align: right;
}

.tCenter {
  text-align: center;
}

.vTop {
  vertical-align: top;
}

.vMiddle {
  vertical-align: middle;
}

.vBottom {
  vertical-align: bottom;
}

.mb1em {
  margin-bottom: 1em;
}

.mb2em {
  margin-bottom: 2em;
}

.mb3em {
  margin-bottom: 3em;
}

.mb50 {
  margin-bottom: 50px;
}

.mb100 {
  margin-bottom: 100px;
}

.mt1em {
  margin-top: 1em;
}

.mt2em {
  margin-top: 2em;
}

.mt3em {
  margin-top: 3em;
}

.mt50 {
  margin-top: 50px;
}

.mt100 {
  margin-top: 100px;
}

.mt150 {
  margin-top: 150px;
}

.mr5 {
  margin-right: 5px;
}

.pb1em {
  padding-bottom: 1em;
}

.pb2em {
  padding-bottom: 2em;
}

.pb3em {
  padding-bottom: 3em;
}

.pb50 {
  padding-bottom: 50px;
}

.pb100 {
  padding-bottom: 100px;
}

.pt1em {
  padding-top: 1em;
}

.pt2em {
  padding-top: 2em;
}

.pt3em {
  padding-top: 3em;
}

.pt50 {
  padding-top: 50px;
}

.pt100 {
  padding-top: 100px;
}

.p3 {
  padding: 3px;
}

.p5 {
  padding: 5px;
}

.p10 {
  padding: 10px;
}

.p20 {
  padding: 20px;
}

.p30 {
  padding: 30px;
}

.pr0 {
  padding-right: 0px;
}

.pr10 {
  padding-right: 10px;
}

.pl0 {
  padding-left: 0px;
}

.pl10 {
  padding-left: 10px;
}

.font-s {
  font-size: 80%;
}

.font-ss {
  font-size: 60%;
}

.font-base {
  font-size: 100%;
}

.font-ls {
  font-size: 110%;
  line-height: 1.4em;
}

.font-l {
  font-size: 140%;
  line-height: 1.4em;
}

.font-lls {
  font-size: 160%;
  line-height: 1.4em;
}

.font-ll {
  font-size: 180%;
  line-height: 1.4em;
}

.font-lll {
  font-size: 240%;
  line-height: 1.4em;
  letter-spacing: .2em;
}

.letter1 {
  letter-spacing: .1em;
}

.letter1_5 {
  letter-spacing: .15em;
}

.letter2 {
  letter-spacing: .2em;
}

.letter3 {
  letter-spacing: .3em;
}

.font-v {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-indent: 0em;
}

.dB {
  display: block;
}

.dIb {
  display: inline-block;
}

.lineH1em {
  line-height: 1em;
}

.lineH1_3em {
  line-height: 1.3em;
}

.lineH1_5em {
  line-height: 1.5em;
}

.lineH2em {
  line-height: 2em;
}

.gmap {
  width: 100%;
  height: 60vh;
}

.fixedBtm {
  width: 100%;
  max-width: 100vw;
  background: rgba(100, 100, 100, 0.5);
  position: fixed;
  z-index: 2;
  bottom: 0px;
  left: 0px;
  padding: 10px 0px
}
.fixedBtm.col2{
  display: flex;
  justify-content: space-evenly;
}
.fixedBtm.col2 a{
  width: 40%;
}

/*
===================================================
	gritLayout pc
===================================================
*/
.gritLayout {
  display: table;
  width: 100%;
  vertical-align: top;
}

.gritLayout.space10 {
  border-spacing: 10px;
}

.gritLayout .grit1 {
  display: table-cell;
  width: 8.3333%;
}

.gritLayout .grit2 {
  display: table-cell;
  width: 16.6666%;
}

.gritLayout .grit3 {
  display: table-cell;
  width: 25%;
}

.gritLayout .grit4 {
  display: table-cell;
  width: 33.3333%;
}

.gritLayout .grit5 {
  display: table-cell;
  width: 41.6666%;
}

.gritLayout .grit6 {
  display: table-cell;
  width: 50%;
}

.gritLayout .grit7 {
  display: table-cell;
  width: 58.3333%;
}

.gritLayout .grit8 {
  display: table-cell;
  width: 66.6666%;
}

.gritLayout .grit9 {
  display: table-cell;
  width: 75%;
}

.gritLayout .grit10 {
  display: table-cell;
  width: 83.3333%;
}

.gritLayout .grit11 {
  display: table-cell;
  width: 91.6666%;
}

.gritLayout .grit12 {
  display: table-cell;
  width: 100%;
}

.styleTtl {
  font-size: 150%;
  border-left: solid 10px #000;
  padding-left: 15px;
  letter-spacing: .2em;
}

.styleTtl span.gray {
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif !important;
  letter-spacing: 0em;
}

.styleTtl2 {
  color: #fff;
  position: relative;
  text-align: center;
}

.styleTtl2 .text {
  position: absolute;
  width: 100%;
  top: 45%;
  margin-top: -1em;
}

.styleTtl2 .sub {
  display: inline-block;
  background: #000;
  padding: 2px 15px;
  font-size: 100%;
  margin-bottom: 1em;
}

.styleTtl2 .main {
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.4);
  font-size: 220%;
  letter-spacing: .2em;
}

.styleTtl2 img {
  width: 100%;
  height: auto;
}

.styleTtl3 {
  position: relative;
  text-align: center;
}

.styleTtl3 .text {
  position: absolute;
  width: 100%;
  top: 45%;
  margin-top: -1em;
}

.styleTtl3 img {
  width: 100%;
  height: auto;
}

.styleTtl4 {
  border-left: solid 10px #e16c37;
  padding-left: 15px;
}

.styleList {}

.styleList li {
  display: inline-block;
  margin-right: 1%;
  width: 48%;
  margin-bottom: 30px;
  vertical-align: top;
}

.styleList li a {
  display: block;
  position: relative;
}

.styleList li iframe {
  width: 100%;
}

.styleList2 li {
  width: 22%;
  margin: 1%;
  display: inline-block;
}

.styleList2 li a {
  display: block;
  position: relative;
  padding: 10px;
  border: solid 1px #ccc;
  text-align: center;
}

.styleList3 {
  text-align: center;
}

.styleList3 li {
  width: 30%;
  padding: 1%;
  display: inline-block;
  vertical-align: top;
  text-align: left;
}

.styleList4 {
  text-align: center;
}

.styleList4 li a {
  display: block;
  position: relative;
}

.styleList4 li {
  width: 22%;
  margin: 1%;
  min-width: 120px;
  display: inline-block;
}

.styleList li a {
  display: block;
  position: relative;
}

.styleBtn {
  display: inline-block;
  padding: 10px;
  border: solid 1px #000;
  min-width: 200px;
  transition: .5s;
  text-align: center;
}

.styleBtn:hover {
  opacity: .8;
  background: #000;
  color: #fff;
}

.styleBtn2 {
  display: inline-block;
  padding: 2px 0px 2px 20px;
  background: #000;
  color: #fff;
  border: solid 1px #000;
  border-radius: 2em;
  position: relative;
  min-width: 130px;
  text-align: left
}

.styleBtn2:after {
  content: "→";
  display: block;
  position: absolute;
  right: 10px;
  top: 3px
}

.styleBtn2:hover {
  transition: .5s;
  opacity: .8;
}

.styleBtn3 {
  display: inline-block;
  padding: 10px;
  min-width: 250px;
  transition: .5s;
}

.styleBtn3:hover {
  opacity: .8;
}

.styleBtn4 {
  width: 50%;
}

.styleBtn5 {
  display: block;
  background: #fff;
  border: solid 2px #e16c37;
  font-weight: bold;
  padding: 30px 10px;
  color: #e16c37;
  border-radius: 10px;
}

.styleBtn5 .border span {
  border-bottom: solid 1px #e16c37;
}

.styleBtn6 {
  position: relative;
  display: block;
  background: #ff9642;
  color: #fff;
  border-radius: 5em;
  min-width: 130px;
  text-align: center;
  transition: .5s;
  padding: 35px 0;
}

.styleBtn6:hover {
  opacity: .8;
}

.styleLink .ttl {
  position: absolute;
  top: 45%;
  color: #fff;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.styleLink .ttl span {
  transition: 2s;
  border: solid 1px #fff;
  padding: 10px 20px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  display: inline-block;
  letter-spacing: 0.2em;
}

.styleLink a {
  display: block;
  position: relative;
  overflow: hidden;
}

.styleLink a img {
  transition: 2s;
}

.styleLink a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  transition: 1s;
}

.styleLink a:hover:after {
  background: rgba(255, 255, 255, 0);
}

.styleLink a:hover img {
  transform: scale(1.1);
}

.styleLink a:hover .ttl span {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.borderTop {
  border-top: solid 1px #ccc;
}

.borderBtm {
  border-bottom: solid 1px #ccc;
}

.borderAll {
  border: solid 1px #ccc;
}

.borderNone {
  border: none !important;
}

.borderRadius {
  border-radius: 10px;
}

.borderRadius50per {
  border-radius: 50%;
}

.borderOrange {
  border: solid 1px #e16c37;
}

.borderOrange .borderTop {
  border-top: solid 1px #e16c37;
}

.borderOrange .borderBtm {
  border-bottom: solid 1px #e16c37;
}

.borderWhite {
  border: solid 4px #fff;
}

.bg_stripe {
  background: url(../img/bg_stripe.png);
}

.bg_stripe2 {
  background: url(../img/bg_stripe2.gif);
}

.bg_orange {
  background: #e16c37 !important;
  color: #fff;
}

.bg_white {
  background: #fff;
}

.bg_gray {
  background: #ccc;
}

.bg_red {
  background: #e00;
  color: #fff;
}

.bg_orange2 {
  background: #ff9642;
  color: #fff;
}

.bg_black {
  background: #000;
  color: #fff;
}

.bg_blue {
  background: #5eb1ff;
}

.bg_paper {
  background: url(../img/bg_paper.jpg);
}

.bg_pink {
  background: #f9e2d7;
}

.bg_yellow {
  background: #fffcdc;
}

.bg_shop {
  background: url(../img/story/section2.jpg) center center;
  background-size: cover;
}

.bg_udon {
  background: url(../img/story/section3_1.png) no-repeat top center;
  background-size: 65% auto;
}

.white {
  color: #fff;
}

.red {
  color: #e00;
}

.orange {
  color: #e16c37;
}

.orange2 {
  color: #ff9642;
}

.gray {
  color: #aaa;
}

.blue {
  color: #5eb1ff;
}

.black {
  color: #000;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.underline {
  text-decoration: underline;
}

.box,
.box2 {
  overflow: hidden;
}

.box .photo,
.box2 .photo {
  float: left;
  width: 50%;
}

.box .text,
.box2 .text {
  float: right;
  width: 45%;
}

.box.type2 .photo,
.box2.type2 .photo {
  width: 55%;
}

.box.type2 .text,
.box2.type2 .text {
  width: 40%;
}

.box2 .photo {
  float: right;
}

.box2 .text {
  float: left;
}

.recruitLink {
  text-align: center;
}

.recruitLink .link {}

.recruitLink .link {
  width: 47%;
  display: inline-block;
}

.recruitLink .link:nth-child(odd) {
  padding-right: 3%;
}

.companyLink {
  text-align: center;
}

.companyLink li {
  display: inline-block;
  padding: 15px;
}

.companyLink li a {
  display: block;
  padding: 30px 0px;
  border: solid 1px #555;
  min-width: 380px;
  transition: .5s;
}

.companyLink li a:hover {
  background: #000;
  color: #fff;
}

#about h2 {
  position: relative;
  font-size: 200%;
}

#about h2 span {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  margin-top: -0.5em;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

#about h2 img {
  width: 100%;
  height: auto;
}

.mw_wp_form dt {
  width: 25%;
  display: inline-block;
  vertical-align: middle;
  padding: 1%;
}

.mw_wp_form dd {
  width: 70%;
  display: inline-block;
  vertical-align: middle;
  padding: 1%;
}

.mw_wp_form input[type="text"],
.mw_wp_form input[type="email"],
.mw_wp_form textArea {
  padding: 2%;
  border: solid 1px #ccc;
  border-radius: 2px;
  width: 96%;
  font-size: 15px;
}

.mw_wp_form input[type="text"].p-postal-code {
  width: 50%;
}

.mw_wp_form .mwform-radio-field {
  display: inline-block;
  margin: 5px !important;
}

.mw_wp_form .confirm,
.mw_wp_form .back,
.mw_wp_form .submit {
  font-size: 120%;
  display: inline-block;
  margin: 10px;
  margin-top: 2em;
  padding: 15px;
  border: solid 1px #eee;
  min-width: 250px;
  color: #fff;
  background: #000;
}

.mw_wp_form .submit {
  margin-top: 1em;
  background: #e00;
}

.confirm .privacyLink {
  display: none;
}

.entryList li {
  display: table;
  width: 100%;
  margin-bottom: 30px;
}

.entryList li a {
  text-decoration: underline;
}

.entryList li .step {
  display: table-cell;
  background: #000;
  color: #fff;
  padding: 10px;
  width: 20%;
  text-align: center;
  position: relative;
}

.entryList li .step:after {
  content: "";
  position: absolute;
  display: block;
  border-top: solid 10px #000;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
  bottom: -20px;
  left: 45%;
  border-radius: 3px;
}

.entryList li:last-child .step:after {
  display: none;
}

.entryList li .text {
  display: table-cell;
  padding: 10px;
  border: solid 1px #000;
}

.entryList2 {
  text-align: center;
}

.entryList2 li {
  display: inline-block;
  vertical-align: middle;
  width: 30%;
  padding: 0.5%;
  position: relative;
}

.entryList2 li a {
  display: block;
  border: solid 2px #000;
  background: #fff;
  padding: 15px;
  text-align: left;
  height: 60px;
}

.entryList2 li a span {
  display: inline-block;
  vertical-align: middle;
}

.entryList2 li a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0px;
  height: 100%;
}

.entryList2 li i {
  position: absolute;
  right: 1.5em;
  top: 50%;
  margin-top: -.5em;
  color: #5eb1ff;
}

.entryBtns{
  display: flex;
  justify-content: space-between;
  width: calc(50% + 40px);
  margin: 0 auto;
}

.entryBtns .styleBtn6{
  width: 48%;
}

.entryBtns .styleBtn6 + .styleBtn6{
  margin-left: 2%;
}

.menuPdfList li {
  width: 48%;
  display: inline-block;
  position: relative;
  padding: 0.5%;
}

.menuPdfList li a {
  display: block;
  border: solid 1px #ccc;
  padding: 20px;
  text-align: left;
}

.menuPdfList li i {
  position: absolute;
  right: 2em;
  top: 50%;
  margin-top: -0.5em;
  font-size: 120%;
}

.menuPdfList.col3{
  display: flex;
  justify-content: center;
  align-items: center;
}

.menuPdfList.col3 li {
  width: 30%;
  display: inline-block;
  position: relative;
  padding: 0.5%;
}

.menuPdfList.col3 li a {
  padding: 15px;
  height: 34px;
}
.menuPdfList li a.lineH34{
  line-height: 34px;
}

.menuBtmList,
.menuSubList {
  text-align: center;
}

.menuBtmList li,
.menuSubList li {
  display: inline-block;
  width: 30%;
  position: relative;
  text-align: left;
}

.menuBtmList li a,
.menuSubList li a {
  display: block;
  background: #000;
  color: #fff;
  padding: 35px;
}

.menuBtmList li i,
.menuSubList li i {
  position: absolute;
  right: 1.5em;
  top: 50%;
  margin-top: -0.5em;
}

.anchors a {
  display: inline-block;
  min-width: 80px;
  line-height: 2em;
  padding-right: 20px;
}

.slickSlider .slick-list {
  overflow: visible;
}

.recruitMenuList {
  text-align: center;
}

.recruitMenuList li {
  display: inline-block;
  border-right: solid 1px #ccc;
}

.recruitMenuList li:last-child {
  border: none;
}

.recruitMenuList li a {
  display: block;
  padding: 15px 25px;
}

.recruitMenuList li a i {
  display: block;
}

.takeoutList {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 20px;
}

.takeoutList li {
  display: table-cell;
  width: 50%;
  background: #e16c37;
  color: #fff;
  height: 150px;
  vertical-align: middle;
  position: relative;
  text-align: center;
}

.takeoutList li a {
  color: #FFF;
}

.takeoutList li:before {
  content: "";
  display: block;
  position: absolute;
  top: 5%;
  left: 2%;
  width: 96%;
  height: 90%;
  border: solid 1px #fff;
  box-sizing: border-box;
}

.takeoutList li .inner {
  position: relative;
  z-index: 2;
}

.specialMenu {
  display: table;
  width: 100%;
}

.specialMenu li {
  display: table-cell;
  width: 33.333%;
  height: 33vw;
  max-height: 350px;
  vertical-align: middle;
}

.specialMenu li a {
  color: #fff;
  display: block;
}

.specialMenu li.menu1 {
  background: url(../img/special/section1_1.jpg) center center;
  background-size: cover;
}

.specialMenu li.menu2 {
  background: url(../img/special/section1_2.jpg) center center;
  background-size: cover;
}

.specialMenu li.menu3 {
  background: url(../img/special/section1_3.jpg) center center;
  background-size: cover;
}

.staffTtl {
  display: table;
  width: 100%;
}

.staffTtl .col1 {
  display: table-cell;
  width: 30%;
  text-align: center;
  background: #e16c37;
  color: #fff;
  vertical-align: middle;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.staffTtl .col2 {
  color: #e16c37;
  display: table-cell;
  border: solid 1px #e16c37;
  padding: 15px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.staffTtl .col2 .name {
  display: inline-block;
  vertical-align: middle;
  border-right: solid 1px #e16c37;
  padding-right: 10px;
  margin-right: 10px;
}

.staffTtl .col2 .data {
  line-height: 1.2em;
  display: inline-block;
  vertical-align: middle;
}

.parttimejobBox {
  border: solid 3px #e16c37;
  background: #fff;
  padding: 30px;
  margin-bottom: 2em;
  border-radius: 10px;
}

.parttimejobBox .text {
  width: 60%
}

.parttimejobBox .photo {
  width: 38%
}

.toggleMenu .toggleBtn {
  position: relative;
  cursor: pointer;
}

.toggleMenu .toggleBtn i {
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -.5em;
}

/*
===================================================
	tb
===================================================
*/

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

  .tb-visible {
    display: initial;
    visibility: visible;
    width: auto;
    height: auto;
  }

  .tb-hidden {
    display: none;
    visibility: hidden;
    width: 0px;
    height: 0px;
  }

  .tb-menuBtn {
    cursor: pointer;
    position: fixed;
    z-index: 999;
    top: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    border: solid 2px #888;
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.07);
  }

  .tb-menuBtn .tb-menuBtn__inner {
    transition: transform 0.5s;
    position: relative;
    top: 10px;
    left: 8px;
    width: 19px;
    height: 3px;
    background: #555555;
  }

  .tb-menuBtn .tb-menuBtn__inner::after {
    transition: transform 0.5s;
    position: absolute;
    top: 6px;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #555555;
  }

  .tb-menuBtn .tb-menuBtn__inner::before {
    transition: transform 0.5s;
    position: absolute;
    top: 12px;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #555555;
  }

  .tb-menuBtn.active .tb-menuBtn__inner {
    position: relative;
    top: 16px;
    left: 8px;
    width: 19px;
    height: 3px;
    background: #555555;
    transform: rotate(45deg);
  }

  .tb-menuBtn.active .tb-menuBtn__inner::after {
    position: absolute;
    top: 0px;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #555555;
    transform: rotate(90deg);
  }

  .tb-menuBtn.active .tb-menuBtn__inner::before {
    position: absolute;
    top: 0px;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #555555;
  }

  .tb-menuBtn span {
    display: none;
  }

  .tb-menuArea {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0px;
    height: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    overflow-y: scroll;
  }

  .tb-menuArea.active {
    transition: opacity 0.5s;
    opacity: 1;
    visibility: visible;
    z-index: 998;
  }

  .tb-menuArea .tb-menu {
    padding: 50px 10px 10px;
  }

  .tb-menuArea .tb-menu li {
    border-bottom: solid 1px #eee;
  }

  .tb-menuArea .tb-menu li a {
    position: relative;
    display: block;
    padding: 10px 5px 10px 12px;
    color: #555555;
  }

  .tb-menuArea .tb-menu li a::before {
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -3px;
    vertical-align: middle;
    content: "";
    display: block;
    border-left: solid 6px #555555;
    border-top: solid 4px transparent;
    border-bottom: solid 4px transparent;
  }

  #header {
    text-align: center;
  }

  #header .logo img {
    height: 50px;
    width: auto;
  }

  #header .shoplistBtn {
    position: absolute;
    right: 15px;
    top: 5px;
  }

  #header .recruitBtn {
    position: absolute;
    right: 65px;
    top: 5px;
  }


  /* recruit */
  .entryBtns{
    display: block;
    width: 100%;
  }

  .entryBtns .styleBtn6{
    width: 50%;
    margin: 0 auto;
    padding: 35px 20px;
  }

  .entryBtns .styleBtn6 + .styleBtn6{
    margin-top: 1em;
    margin-left: auto;
  }
}
/*
===================================================
	sp
===================================================
*/

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

  .maxWidth,
  .maxWidth2,
  .maxWidth3 {
    overflow: hidden;
  }

  .maxWidth3 {
    max-width: none;
  }

  .sp-maxWidthNone {
    max-width: none;
  }

  .pan {
    font-size: 70%;
  }

  .sp-visible {
    display: initial;
    visibility: visible;
    width: auto;
    height: auto;
  }

  .sp-hidden {
    display: none;
    visibility: hidden;
    width: 0px;
    height: 0px;
  }

  .sp-dIb {
    display: inline-block;
  }

  .sp-dB {
    display: block;
  }

  .sp-lineH1em {
    line-height: 1em;
  }

  .sp-lineH1_5em {
    line-height: 1.5em;
  }

  .sp-lineH2em {
    line-height: 2em;
  }

  .sp-menuBtn {
    cursor: pointer;
    position: fixed;
    z-index: 999;
    top: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    border: solid 2px #888;
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.07);
  }

  .sp-menuBtn .sp-menuBtn__inner {
    transition: transform 0.5s;
    position: relative;
    top: 10px;
    left: 8px;
    width: 19px;
    height: 3px;
    background: #555555;
  }

  .sp-menuBtn .sp-menuBtn__inner::after {
    transition: transform 0.5s;
    position: absolute;
    top: 6px;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #555555;
  }

  .sp-menuBtn .sp-menuBtn__inner::before {
    transition: transform 0.5s;
    position: absolute;
    top: 12px;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #555555;
  }

  .sp-menuBtn.active .sp-menuBtn__inner {
    position: relative;
    top: 16px;
    left: 8px;
    width: 19px;
    height: 3px;
    background: #555555;
    transform: rotate(45deg);
  }

  .sp-menuBtn.active .sp-menuBtn__inner::after {
    position: absolute;
    top: 0px;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #555555;
    transform: rotate(90deg);
  }

  .sp-menuBtn.active .sp-menuBtn__inner::before {
    position: absolute;
    top: 0px;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #555555;
  }

  .sp-menuBtn span {
    display: none;
  }

  .sp-menuArea {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0px;
    height: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    overflow-y: scroll;
  }

  .sp-menuArea.active {
    transition: opacity 0.5s;
    opacity: 1;
    visibility: visible;
    z-index: 998;
  }

  .sp-menuArea .sp-menu {
    padding: 50px 10px 10px;
  }

  .sp-menuArea .sp-menu li {
    border-bottom: solid 1px #eee;
  }

  .sp-menuArea .sp-menu li a {
    position: relative;
    display: block;
    padding: 10px 5px 10px 12px;
    color: #555555;
  }

  .sp-menuArea .sp-menu li a::before {
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -3px;
    vertical-align: middle;
    content: "";
    display: block;
    border-left: solid 6px #555555;
    border-top: solid 4px transparent;
    border-bottom: solid 4px transparent;
  }

  .sp-fLeft {
    float: left;
  }

  .sp-fRight {
    float: right;
  }

  .sp-tLeft {
    text-align: left;
  }

  .sp-tRight {
    text-align: right;
  }

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

  .sp-vTop {
    vertical-align: top;
  }

  .sp-vMiddle {
    vertical-align: middle;
  }

  .sp-vBottom {
    vertical-align: bottom;
  }

  .sp-mb1em {
    margin-bottom: 1em;
  }

  .sp-mb2em {
    margin-bottom: 2em;
  }

  .sp-mb3em {
    margin-bottom: 3em;
  }

  .sp-mb0 {
    margin-bottom: 0px;
  }

  .sp-mb50 {
    margin-bottom: 50px;
  }

  .sp-mb100 {
    margin-bottom: 100px;
  }

  .sp-mt1em {
    margin-top: 1em;
  }

  .sp-mt2em {
    margin-top: 2em;
  }

  .sp-mt3em {
    margin-top: 3em;
  }

  .sp-mt0 {
    margin-top: 0px;
  }

  .sp-mt50 {
    margin-top: 50px;
  }

  .sp-mt100 {
    margin-top: 100px;
  }

  .sp-pb1em {
    padding-bottom: 1em;
  }

  .sp-pb2em {
    padding-bottom: 2em;
  }

  .sp-pb3em {
    padding-bottom: 3em;
  }

  .sp-pb50 {
    padding-bottom: 50px;
  }

  .sp-pb100 {
    padding-bottom: 100px;
  }

  .sp-pt1em {
    padding-top: 1em;
  }

  .sp-pt2em {
    padding-top: 2em;
  }

  .sp-pt3em {
    padding-top: 3em;
  }

  .sp-pt0 {
    padding-top: 0px;
  }

  .sp-pt50 {
    padding-top: 50px;
  }

  .sp-pt100 {
    padding-top: 100px;
  }

  .sp-p0 {
    padding: 0px;
  }

  .sp-p5 {
    padding: 5px;
  }

  .sp-p10 {
    padding: 10px;
  }

  .sp-p20 {
    padding: 20px;
  }

  .sp-p30 {
    padding: 30px;
  }

  .sp-ib {
    display: inline-block;
  }

  .sp-font-s {
    font-size: 90% !important;
  }

  .sp-font-ss {
    font-size: 80% !important;
  }

  .sp-font-h {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }

  .gritLayout .sp-grit1 {
    width: 8.3333%;
  }

  .gritLayout .sp-grit2 {
    width: 16.6666%;
  }

  .gritLayout .sp-grit3 {
    width: 25%;
  }

  .gritLayout .sp-grit4 {
    width: 33.3333%;
  }

  .gritLayout .sp-grit5 {
    width: 41.6666%;
  }

  .gritLayout .sp-grit6 {
    width: 50%;
  }

  .gritLayout .sp-grit7 {
    width: 58.3333%;
  }

  .gritLayout .sp-grit8 {
    width: 66.6666%;
  }

  .gritLayout .sp-grit9 {
    width: 75%;
  }

  .gritLayout .sp-grit10 {
    width: 83.3333%;
  }

  .gritLayout .sp-grit11 {
    width: 91.6666%;
  }

  .gritLayout .sp-grit12 {
    width: 100%;
    display: block;
  }


  #main {}

  #footer {
    padding-bottom: 80px;
  }

  #footer .logo img {
    width: 280px;
    height: auto;
  }

  .styleTtl {
    font-size: 120%;
  }

  .styleTtl2 .sub {
    font-size: 60%;
  }

  .styleTtl2 .main {
    font-size: 120%;
  }

  .styleList {}

  .styleList li {
    display: block;
    margin-right: 0%;
    width: auto;
    margin-bottom: 10px;
    vertical-align: top;
  }

  .styleList li a {
    display: block;
    position: relative;
  }

  .styleList2 li {
    width: 47%;
    margin: 1%;
    min-width: 0px;
    display: inline-block;
  }

  .styleList3 li {
    width: auto;
    padding: 1%;
    display: block;
    vertical-align: top;
    text-align: left;
    margin-bottom: 1em;
  }

  .styleLink .ttl {
    position: absolute;
    top: 50%;
    margin-top: -1em;
    color: #fff;
    width: 100%;
    text-align: center;
    z-index: 2;
    font-size: 90%;
  }

  .styleLink .ttl span {
    transition: 2s;
    border: solid 1px #fff;
    padding: 10px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    display: inline-block;
    letter-spacing: 0.2em;
    min-width: 80%;
  }

  .styleBtn3 {
    display: inline-block;
    padding: 10px;
    min-width: 200px;
    transition: .5s;
  }

  .styleBtn4 {
    width: 30%;
  }

  .font-l {
    font-size: 120%;
    line-height: 1.4em;
  }

  .font-ll,
  .font-lls {
    font-size: 140%;
    line-height: 1.4em;
  }

  .font-lll {
    font-size: 180%;
    line-height: 1.4em;
  }

  #about h2 {
    font-size: 140%;
  }

  .box .photo,
  .box2 .photo,
  .box.type2 .photo,
  .box2.type2 .photo {
    float: none;
    width: auto;
    text-align: center;
    padding: 10px
  }

  .box .text,
  .box2 .text,
  .box.type2 .text,
  .box2.type2 .text {
    float: none;
    width: auto;
  }

  .recruitLink {
    text-align: center;
  }

  .recruitLink .link {}

  .recruitLink .link {
    width: auto;
    display: block;
  }

  .recruitLink .link:nth-child(odd) {
    padding-right: 0%;
  }

  .entryBtns .styleBtn6{
    width: 30%;
    padding: 20px;
  }

  .companyLink {
    text-align: center;
  }

  .companyLink li {
    display: block;
    padding: 10px;
  }

  .companyLink li a {
    display: block;
    padding: 15px 0px;
    border: solid 1px #555;
    width: auto;
    min-width: 0px;
    transition: .5s;
  }

  .companyLink li a:hover {
    background: #000;
    color: #fff;
  }

  .mw_wp_form dt {
    width: 98%;
    display: inline-block;
    vertical-align: middle;
    padding: 1%;
  }

  .mw_wp_form dd {
    width: 98%;
    display: inline-block;
    vertical-align: middle;
    padding: 1%;
    margin-bottom: 1em;
  }

  .mw_wp_form input[type="text"],
  .mw_wp_form input[type="email"],
  .mw_wp_form textArea {
    padding: 1%;
    border: solid 1px #ccc;
    border-radius: 2px;
    width: 98%;
  }

  .mw_wp_form input[type="text"].p-postal-code {
    width: 98%;
  }

  .entryList {
    font-size: 90%;
  }

  .entryList2 li {
    display: block;
    width: auto;
  }

  .entryList2 li a {
    height: auto;
  }

  .menuPdfList li {
    width: auto;
    display: block;
    position: relative;
    padding: 0.5%;
  }

  .menuPdfList li a {
    display: block;
    border: solid 1px #ccc;
    padding: 20px;
    text-align: left;
  }

  .menuPdfList li i {
    position: absolute;
    right: 2em;
    top: 50%;
    margin-top: -0.5em;
    font-size: 120%;
  }

  .menuPdfList.col3{
    display: block;
  }

  .menuPdfList.col3 li{
    width: auto;
    display: block;
  }

  .menuPdfList.col3 li a{
    padding: 20px;
    height: auto;
  }

  .menuPdfList li a.lineH34{
    line-height: 1em;
  }

  .menuBtmList {
    text-align: center;
  }

  .menuBtmList li {
    display: block;
    width: auto;
    position: relative;
    text-align: left;
    margin-bottom: 1px;
  }

  .menuSubList li {
    width: 48%;
    font-size: 95%;
  }

  .menuBtmList li a,
  .menuSubList li a {
    display: block;
    background: #000;
    color: #fff;
    padding: 15px;
    position: relative;
  }

  .menuBtmList li i,
  .menuSubList li i {
    position: absolute;
    right: 0.5em;
    top: 50%;
    margin-top: -0.5em;
  }

  .recruitMenuList li {
    display: block;
    border: none;
    border-bottom: dotted 1px #eee;
  }

  .recruitMenuList li a {
    display: block;
    padding: 10px;
  }

  .recruitMenuList li a i {
    display: inline-block;
    padding-left: 1em;
  }

  .takeoutList li {
    display: block;
    width: auto;
    height: auto;
    margin-bottom: 15px;
    padding: 20px;
  }

  .takeoutList li:before {
    content: "";
    display: block;
    position: absolute;
    top: 10%;
    left: 2%;
    width: 96%;
    height: 80%;
    border: solid 1px #fff;
    box-sizing: border-box;
  }

  .specialMenu li {
    display: block;
    width: auto;
    height: auto;
    padding: 15px;
  }

  .staffTtl .col1 {
    display: block;
    width: auto;
    text-align: center;
    background: #e16c37;
    color: #fff;
    vertical-align: middle;
    border-radius: 0px;
  }

  .staffTtl .col2 {
    color: #e16c37;
    display: block;
    border: solid 1px #e16c37;
    padding: 15px;
    border-radius: 0px;
  }

  .staffTtl .col2 .name {
    display: block;
    border-right: none;
    padding-right: 0px;
    margin-right: 0px;
  }

  .staffTtl .col2 .data {
    display: block;
    vertical-align: middle;
    margin-top: 1em;
  }
}

@media screen and (max-width: 355px) {
  #header .recruitBtn {
    display: none;
  }
}

.w22 {
  width: 22%;
}

.listitem_pc_w48 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.listitem_pc_w48 li {
  width: calc(1030px / 2);
}

@media screen and (max-width: 768px) {
  .listitem_pc_w48 li {
    width: 100%;
  }
}

@media (min-width:1101px) and (max-width:1100px) {
  #header .font-mincho li:nth-of-type(1) {
    text-align: center;
  }

  #header .font-mincho li:nth-of-type(1) span {
    display: block;
  }
}

/* 20240228 お問い合わせフォーム関連 */
#mw_wp_form_mw-wp-form-100 .inquiry-type .mwform-radio-field {
  display: block;
}

#mw_wp_form_mw-wp-form-100 textarea {
  font-family: inherit;
}

.icon-required {
  margin-right: 0.5rem;
  padding: 0.3rem;
  display: inline-block;
  font-size: 0.8rem;
  color: #fff;
  background-color: #ee0000;
  border-radius: 5px;
  line-height: 1;
}

.menus .gritLayout .grit9{
  padding: 10px 0;
}