@charset "UTF-8";
a {
  outline: none;
  opacity: 1;
  transition: all .3s;
}
a:hover {
  opacity: 0.8;
  transition: all .3s;
}
*:hover {
  transition: all .3s;
}
figure {
  margin: 0;
}
figure img {
  width: 100%;
  vertical-align: bottom;
}
/*アニメーション*/
.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.zoomInTrigger, .zoomOutTrigger {
  opacity: 0;
}
/*アニメーションここまで*/
/*アニメーション*/
.katakata {
  animation: katakata 3s infinite ease-in-out;
}
@keyframes katakata {
  /* カタカタ：0%〜25%（1秒） */
  0% {
    transform: rotate(0deg);
  }
  2% {
    transform: rotate(-2deg);
  }
  5% {
    transform: rotate(2deg);
  }
  8% {
    transform: rotate(-2deg);
  }
  12% {
    transform: rotate(2deg);
  }
  16% {
    transform: rotate(-1deg);
  }
  20% {
    transform: rotate(1deg);
  }
  25% {
    transform: rotate(0deg);
  }
  /* 静止：25%〜100%（3秒） */
  100% {
    transform: rotate(0deg);
  }
}
.katakata02 {
  animation-name: katakata02;
  animation-duration: 6000ms;
  animation-iteration-count: infinite;
  animation-timing-function: step-start;
}
@keyframes katakata02 {
  0% {
    transform: translateY(-2px) rotate(6deg);
  }
  10% {
    transform: translate(0) rotate(0deg);
  }
  20% {
    transform: translate(0) rotate(-6deg);
  }
  30% {
    transform: translateY(-2px) rotate(0deg);
  }
  40% {
    transform: translateY(-2px) rotate(6deg);
  }
  50% {
    transform: translate(2px) rotate(-2deg);
  }
  60% {
    transform: translateY(2px) rotate(0deg);
  }
  70% {
    transform: translate(0) rotate(6deg);
  }
  80% {
    transform: translate(2px) rotate(-2deg);
  }
  90% {
    transform: translate(0) rotate(0deg);
  }
  100% {
    transform: translateY(-2px) rotate(6deg);
  }
}
/*アニメーションここまで*/
html {
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}
body {
  margin: 0;
  padding: 0;
  color: #111;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
  font-style: normal;
}
body.fixed {
  overflow: hidden;
}
#wrapper {
  min-width: 1100px;
  overflow: hidden;
}
.inner {
  width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
br.sp {
  display: none;
}
/*-------------------トップ-------------------*/
.top {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
}
.top .swiper {
  width: 100%;
  height: 100%;
}
.top .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.top h2 {
  width: 1000px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.top h2 img {
  width: 100%;
}
.top h2.sp {
  display: none;
}
/*-------------------トップ以下-------------------*/
.contents {
  padding: 60px 0 65px;
  position: relative;
  overflow: hidden;
}
.contents h3 {
  font-family: ta-fuga-fude, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 58px;
  text-align: center;
  margin: 0 auto 30px;
}
.contents h3 .border {
  background: linear-gradient(transparent 70%, #fff100 0%);
}
.contents h3 .en {
  font-family: ab-appare, sans-serif;
  font-weight: 400;
  font-style: normal;
}
/*-------------------スライド-------------------*/
.contents.slide {
  padding: 70px 0 50px;
  background-color: #fff;
}
.contents.slide .swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
}
.contents.slide .swiper-slide img {
  width: 100%;
  vertical-align: bottom;
}
.contents.slide .swiper-button-prev:after, .contents.slide .swiper-button-next:after {
  display: none;
}
.contents.slide .swiper-button-next {
  top: 0 !important;
  bottom: 0 !important;
  right: 2% !important;
  left: auto !important;
  margin: auto !important;
}
.contents.slide .swiper-button-prev {
  top: 0 !important;
  bottom: 0 !important;
  left: 2% !important;
  right: auto !important;
  margin: auto !important;
}
.contents.slide .swiper-button-prev {
  background-color: #fff100;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
}
.contents.slide .swiper-button-next {
  background-color: #fff100;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
}
.contents.slide .swiper-button-prev .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 21px;
  margin: auto;
  width: 0;
  height: 0;
  content: '';
  border: 5px solid transparent;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-left-color: #111;
  transform: rotate(180deg);
}
.contents.slide .swiper-button-next .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 21px;
  margin: auto;
  width: 0;
  height: 0;
  content: '';
  border: 5px solid transparent;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-left-color: #111;
}
.contents.slide .swiper-pagination {
  bottom: 10px !important;
  left: auto !important;
  right: auto !important;
}
.contents.slide .swiper-pagination-bullet {
  background: #e60012 !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 8px !important;
}
/*-------------------ニュース-------------------*/
.contents.news {
  padding: 50px 0 70px;
  background-color: #fff100;
}
.contents.news h3 {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #e60012;
  font-size: 38px;
  text-align: left;
  margin: 0 auto 20px;
}
.contents.news h3 .sub {
  color: #111;
  font-size: 24px;
  display: inline-block;
  position: relative;
  top: -3px;
  left: 20px;
}
.contents.news .inner02 {
  display: flex;
  justify-content: space-between;
}
.contents.news .inner02 .box {
  width: 48%;
  background-color: #fff;
  border: solid 3px #111;
  position: relative;
}
.contents.news .inner02 .box h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #e60012;
  border-bottom: solid 2px #111;
  padding: 10px 5% 12px;
}
.contents.news .inner02 .box .btn {
  margin: 0;
}
.contents.news .inner02 .box .btn a {
  display: block;
  text-decoration: none;
  color: #e60012;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  width: 100px;
  border: solid 2px #e60012;
  border-radius: 50px;
  padding: 5px 10px 7px 0;
  position: absolute;
  top: 9px;
  right: 5%;
}
.contents.news .inner02 .box .btn a:hover {
  opacity: 1;
  color: #fff;
  background-color: #e60012;
}
.contents.news .inner02 .box .btn .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  width: 0;
  height: 0;
  content: '';
  border: 4px solid transparent;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-left-color: #e60012;
  transition: all .3s;
}
.contents.news .inner02 .box .btn a:hover .arrow {
  right: 0;
  border-left-color: #fff;
}
.contents.news .inner02 .box .dl_box {
  padding: 15px 5%;
}
.contents.news .inner02 .box .dl_box dl {
  margin: 0;
}
.contents.news .inner02 .box .dl_box dl a {
  text-decoration: none;
  color: #111;
  padding: 10px 0 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: solid 1px #eee;
}
.contents.news .inner02 .box .dl_box dl:last-child a {
  border-bottom: none;
}
.contents.news .inner02 .box .dl_box dl a:hover {
  opacity: 1;
  color: #e60012;
}
.contents.news .inner02 .box .dl_box dl dt {
  width: 20%;
  display: flex;
  align-items: center;
}
.contents.news .inner02 .box .dl_box dl dt.tag {
  width: 16%;
  margin-right: 4%;
  background-color: #e60012;
  color: #fff;
  font-size: 13px;
  padding: 0 0 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tag.news {
  background-color: #f85f20 !important;
}
.tag.menu {
  background-color: #009b4f !important;
}
.tag.info {
  background-color: #f50821 !important;
}
.tag.event {
  background-color: #ff87b4 !important;
}
.tag.new {
  background-color: #fe9815 !important;
}
.tag.renewal {
  background-color: #144dfa !important;
}
.contents.news .inner02 .box .dl_box dl dd {
  margin: 0;
  width: 60%;
}
/*-------------------こだわり-------------------*/
.contents.concept {
  padding: 200px 0 130px;
  background-image: url("../img/chochin.png"), url("../img/noren.jpg");
  background-size: 1500px;
  background-position: center -33px, center bottom;
  background-repeat: repeat-x;
}
.contents.concept .gyoza.right {
  width: 30%;
  position: absolute;
  top: 250px;
  right: 0;
  z-index: 2;
}
.contents.concept .gyoza.left {
  width: 30%;
  position: absolute;
  bottom: 50px;
  left: 0;
  z-index: 2;
  transform: scale(-1, 1);
}
.contents.concept .noren {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff100;
}
.contents.concept h3 {
  text-align: center;
  font-size: 88px;
  margin: 0 auto 50px;
}
.contents.concept h3 .sub {
  display: block;
  font-size: 48px;
  margin-bottom: 30px;
}
.contents.concept .ojisan {
  width: 140px;
  position: absolute;
  top: -20px;
  left: 0;
  right: -900px;
  margin: auto;
}
.contents.concept ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.contents.concept ul li {
  border: solid 3px #e60012;
  border-radius: 20px;
  padding: 65px 8% 30px 5%;
  margin: 30px auto;
  width: 75%;
  position: relative;
}
.contents.concept ul li .no {
  font-family: ta-fuga-fude, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: #e60012;
  padding: 10px 5%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px 0 20px 0;
}
.contents.concept ul li .no .en {
  font-family: ab-appare, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.contents.concept ul li h4 {
  margin: 0 auto 10px;
  font-size: 24px;
  font-weight: 700;
  color: #e60012;
}
.contents.concept ul li p {
  margin: 0;
}
/*-------------------SNS-------------------*/
.contents.sns {
  padding: 90px 0 70px;
  background-color: #fff100;
}
.contents.sns .wrap {
  margin: 0 auto;
  padding: 50px 5% 30px;
  background-color: #fff;
  border: solid 3px #111;
  border-radius: 20px;
  width: 75%;
  position: relative;
}
.contents.sns .wrap:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #111;
  border-radius: 20px;
  position: absolute;
  right: -15px;
  bottom: -15px;
  z-index: -1;
  opacity: 0.3;
}
.contents.sns h3 {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  background-color: #111;
  border-radius: 15px;
  text-align: center;
  font-size: 28px;
  padding: 10px 0 13px;
  width: 300px;
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
  margin: auto;
}
.contents.sns ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  position: relative;
}
.contents.sns ul li {
  width: 50%;
  text-align: center;
  position: relative;
  left: -5%;
}
.contents.sns ul li a {
  display: block;
  text-decoration: none;
  color: #111;
}
.contents.sns ul li figure {
  width: 100px;
  margin: 0 auto 20px;
}
.contents.sns ul li .comment {
  margin: 0;
  width: 140px;
  position: absolute;
  top: 0;
  right: 0;
}
.contents.sns ul li .comment img {
  width: 100%;
}
/*-------------------FC加盟店募集-------------------*/
.contents.fc {
  background-color: #fff;
}
.contents.fc .caption {
  color: #e60012;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 20px;
}
.contents.fc .btn {
  margin: 0;
}
.contents.fc .btn a {
  display: block;
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-size: 20px;
  width: 400px;
  background-color: #e60012;
  border-radius: 50px;
  padding: 15px 0 16px;
  margin: 0 auto;
  position: relative;
}
.contents.fc .btn .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 0;
  height: 0;
  content: '';
  border: 5px solid transparent;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-left-color: #fff;
  transition: all .3s;
}
.contents.fc .btn a:hover .arrow {
  right: 10px;
}
/*-------------------採用情報-------------------*/
.contents.recruit {
  background-color: #fff100;
}
.contents.recruit h3 .border {
  background: linear-gradient(transparent 70%, #fff 0%);
}
.contents.recruit figure {
  width: 75%;
  margin: 0 auto 40px;
}
.contents.recruit .btn {
  margin: 0;
}
.contents.recruit .btn a {
  display: block;
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-size: 20px;
  width: 400px;
  background-color: #e60012;
  border-radius: 50px;
  padding: 15px 0 16px;
  margin: 0 auto;
  position: relative;
}
.contents.recruit .btn .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 0;
  height: 0;
  content: '';
  border: 5px solid transparent;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-left-color: #fff;
  transition: all .3s;
}
.contents.recruit .btn a:hover .arrow {
  right: 10px;
}
/*-------------------店舗一覧-------------------*/
.contents.restaurant {
  background-color: #f5f5f5;
}
.contents.restaurant .search_box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.contents.restaurant .search_box p {
  font-size: 18px;
  font-weight: 700;
  margin: 0 20px 0 0;
}
.contents.restaurant .search_box form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contents.restaurant .search_box .select {
  width: 200px;
  position: relative;
}
.contents.restaurant .search_box .select select {
  color: #111;
  background: #fff;
  border: solid 1px #111;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 5%;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.contents.restaurant .search_box .select select::-ms-expand {
  display: none;
}
.contents.restaurant .search_box .select:after {
  position: absolute;
  top: 20px;
  right: 2%;
  width: 0;
  height: 0;
  content: '';
  border: 5px solid transparent;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-left-color: #e60012;
  transform: rotate(90deg);
  pointer-events: none;
}
.contents.restaurant .search_box .select select:hover {
  cursor: pointer;
}
.contents.restaurant .search_box .btn {
  width: 100px;
  background-color: #fff;
  border: solid 2px #e60012;
  border-radius: 50px;
  margin: 0 0 0 20px;
  transition: all .3s;
}
.contents.restaurant .search_box .btn:hover {
  background-color: #e60012;
  transition: all .3s;
}
.contents.restaurant .search_box .btn .search {
  width: 100%;
  color: #e60012;
  background: no-repeat;
  border: none;
  padding: 7px 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  outline: none;
}
.contents.restaurant .search_box .btn:hover .search {
  color: #fff;
}
.contents.restaurant .list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contents.restaurant .list ul li {
  width: 45%;
  background-color: #fff;
  border: solid 2px #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 2% 20px;
  margin: 6px 0;
  font-size: 14px;
  position: relative;
}
.contents.restaurant .list ul li h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: #e60012;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 8% 8px 5%;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}
.contents.restaurant .list ul li .dl_box {
  width: 70%;
}
.contents.restaurant .list ul li .dl_box dl {
  margin: 0;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contents.restaurant .list ul li .dl_box dl dt {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fce0e3;
  padding: 1px 0 2px;
  font-size: 13px;
}
.contents.restaurant .list ul li .dl_box dl dd {
  margin: 0;
  width: 75%;
}
.contents.restaurant .list ul li .dl_box dl dd a {
  text-decoration: none;
  color: #111;
}
.contents.restaurant .list ul li .link_box {
  width: 25%;
}
.contents.restaurant .list ul li .link_box ul {
  display: block;
}
.contents.restaurant .list ul li .link_box ul li {
  width: 100%;
  border: none;
  padding: 0;
  margin: 10px auto;
}
.contents.restaurant .list ul li .link_box ul li a {
  width: 100%;
  display: block;
  text-decoration: none;
  color: #fff;
  background-color: #e60012;
  border-radius: 50px;
  padding: 5px 10px 6px 0;
  text-align: center;
  position: relative;
}
.contents.restaurant .list ul li .link_box ul li .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  width: 0;
  height: 0;
  content: '';
  border: 4px solid transparent;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-left-color: #fff;
  transition: all .3s;
}
.contents.restaurant .list ul li .link_box ul li a:hover .arrow {
  right: 0;
}
.contents.restaurant .toggle {
  color: #e60012;
  text-align: center;
  font-size: 20px;
  width: 400px;
  background-color: #fff;
  border: solid 2px #e60012;
  border-radius: 50px;
  padding: 15px 0 16px;
  margin: 30px auto 0;
  cursor: pointer;
  position: relative;
  transition: all .3s;
}
.contents.restaurant .toggle:hover {
  color: #fff;
  background-color: #e60012;
  transition: all .3s;
}
.contents.restaurant .toggle .plus {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(-50%, 10%);
}
.contents.restaurant .toggle .plus:before, .contents.restaurant .toggle .plus:after {
  display: block;
  content: '';
  background-color: #e60012;
  position: absolute;
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contents.restaurant .toggle .plus:before {
  width: 2px;
  height: 14px;
}
.contents.restaurant .close .plus:before {
  display: none;
}
.contents.restaurant .toggle:hover .plus:before, .contents.restaurant .toggle:hover .plus:after {
  background-color: #fff;
}
.contents.restaurant .not {
  text-align: center;
  width: 100%;
}
@media screen and (max-width:1050px) {
  #wrapper {
    min-width: 100%;
  }
  .inner {
    width: 90%;
  }
  br.sp {
    display: block;
  }
  /*-------------------トップ-------------------*/
  .top {
    height: 60vh;
    min-height: 350px;
  }
  .top h2 {
    width: 300px;
  }
  .top h2.pc {
    display: none;
  }
  .top h2.sp {
    display: block;
  }
  /*-------------------トップ以下-------------------*/
  .contents {
    padding: 40px 0 45px;
  }
  .contents h3 {
    font-size: 38px;
    margin: 0 auto 20px;
  }
  /*-------------------スライド-------------------*/
  .contents.slide {
    padding: 30px 0 15px;
  }
  .contents.slide .swiper {
    padding-bottom: 40px;
  }
  .contents.slide .swiper-button-prev {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
  }
  .contents.slide .swiper-button-next {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
  }
  .contents.slide .swiper-button-prev .arrow {
    position: absolute;
    right: 16.5px;
  }
  .contents.slide .swiper-button-next .arrow {
    position: absolute;
    left: 16.5px;
  }
  /*-------------------ニュース-------------------*/
  .contents.news {
    padding: 30px 0;
  }
  .contents.news h3 {
    font-size: 28px;
    margin: 0 auto 15px;
  }
  .contents.news h3 .sub {
    font-size: 18px;
    position: relative;
    left: 15px;
  }
  .contents.news .inner02 {
    display: block;
  }
  .contents.news .inner02 .box {
    width: auto;
    margin: 0 auto 10px;
  }
  .contents.news .inner02 .box h4 {
    font-size: 20px;
  }
  .contents.news .inner02 .box .btn a {
    position: absolute;
    top: 6px;
  }
  .contents.news .inner02 .box .dl_box dl dt {
    width: 100px;
    margin: 0 0 5px;
  }
  .contents.news .inner02 .box .dl_box dl dt.tag {
    width: 85px;
    margin: 0 0 5px;
  }
  .contents.news .inner02 .box .dl_box dl dd {
    width: 100%;
  }
  /*-------------------こだわり-------------------*/
  .contents.concept {
    padding: 100px 0 45px;
    background-image: url("../img/chochin.png"), url("../img/noren.jpg");
    background-size: 800px, 600px;
    background-position: center -18px, center bottom;
  }
  .contents.concept .gyoza.right {
    width: 120px;
    position: absolute;
    top: 140px;
  }
  .contents.concept .gyoza.left {
    width: 120px;
    position: absolute;
    bottom: 30px;
  }
  .contents.concept h3 {
    font-size: 42px;
    margin: 0 auto 30px;
  }
  .contents.concept h3 .sub {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .contents.concept .ojisan {
    width: 60px;
    position: absolute;
    top: -90px;
    right: -280px;
    z-index: 1;
  }
  .contents.concept ul li {
    padding: 50px 5% 20px;
    margin: 20px auto;
    width: auto;
  }
  .contents.concept ul li .no {
    font-size: 18px;
  }
  .contents.concept ul li h4 {
    margin: 0 auto 5px;
    font-size: 20px;
  }
  /*-------------------SNS-------------------*/
  .contents.sns {
    padding: 65px 0 45px;
  }
  .contents.sns .wrap {
    padding: 40px 0 20px;
    width: auto;
  }
  .contents.sns .wrap:after {
    position: absolute;
    right: -10px;
    bottom: -10px;
  }
  .contents.sns h3 {
    font-size: 24px;
    padding: 5px 0 8px;
    width: 200px;
    position: absolute;
    top: -27px;
  }
  .contents.sns ul li {
    width: 45%;
    position: relative;
    left: auto;
  }
  .contents.sns ul li figure {
    width: 60px;
    margin: 0 auto 10px;
  }
  .contents.sns ul li figcaption {
    font-size: 13px;
  }
  .contents.sns ul li .comment {
    width: 50px;
    position: absolute;
    top: 10px;
    left: 0;
    right: -120px;
    margin: auto;
  }
  /*-------------------FC加盟店募集-------------------*/
  .contents.fc .caption {
    font-size: 17px;
    margin: 0 auto 15px;
  }
  .contents.fc .btn a {
    font-size: 18px;
    width: auto;
  }
  /*-------------------採用情報-------------------*/
  .contents.recruit figure {
    width: auto;
    margin: 0 auto 25px;
  }
  .contents.recruit .btn a {
    font-size: 18px;
    width: auto;
  }
  /*-------------------店舗一覧-------------------*/
  .contents.restaurant .search_box {
    display: block;
  }
  .contents.restaurant .search_box p {
    font-size: 16px;
    margin: 0 auto 15px;
    text-align: center;
    width: 100%;
  }
  .contents.restaurant .search_box form {
    display: block;
  }
  .contents.restaurant .search_box .select {
    width: 200px;
    margin: 0 auto 15px;
  }
  .contents.restaurant .search_box .btn {
    width: 100px;
    margin: 0 auto;
  }
  .contents.restaurant .list ul {
    display: block;
  }
  .contents.restaurant .list ul li {
    width: auto;
    display: block;
    padding: 40px 5% 10px;
    margin: 10px 0;
  }
  .contents.restaurant .list ul li h4 {
    font-size: 16px;
  }
  .contents.restaurant .list ul li .dl_box {
    width: auto;
    margin-bottom: 10px;
  }
  .contents.restaurant .list ul li .link_box {
    width: auto;
  }
  .contents.restaurant .list ul li .link_box ul {
    display: flex;
  }
  .contents.restaurant .list ul li .link_box ul li {
    width: 48%;
    margin: 5px 1%;
  }
  .contents.restaurant .list ul li .link_box ul li a {
    padding: 5px 0 6px;
  }
  .contents.restaurant .toggle {
    font-size: 18px;
    width: auto;
  }
}