@charset "UTF-8";
/*-----------------------------------------------------
	top
-----------------------------------------------------*/
.dn{
    display: none;
}
.gjs-dashed .dn{
    display: block;
}

/*MV
-----------------------------------------------------*/
.top-mv {
  position: relative;
}
.top-mv .top-mv-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.top-mv .top-mv-head {
  display: none;
}

@media screen and (min-width: 768px) {
  .top-mv .top-mv-logo {
    position: absolute;
    width: min(50vw, 750px);
    -webkit-transform: translateY(-30%) translateX(-10vw);
    transform: translateY(-30%) translateX(-10vw);
  }
}
/*	スクロールアニメーション
---------------------------------*/
.scrolldown {
  height: 150px;
  position: absolute;
  left: 15px;
  bottom: 0;
  -webkit-transform: translateY(20%);
  transform: translateY(20%);
  z-index: 150;
}
.scrolldown:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #fff;
  width: 1px;
  height: 130px;
}
.scrolldown:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 30px;
  content: "";
  background: var(--red);
  -webkit-animation: scrollmove 2.5s ease-in-out infinite;
  animation: scrollmove 2.5s ease-in-out infinite;
}

.scroll-down-txt {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.075em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 6px;
}

@-webkit-keyframes scrollmove {
  100% {
    -webkit-transform: translateY(300%);
    transform: translateY(300%);
  }
}

@keyframes scrollmove {
  100% {
    -webkit-transform: translateY(300%);
    transform: translateY(300%);
  }
}
@media screen and (min-width: 768px) {
  .scrolldown {
    height: 200px;
    left: 30px;
    bottom: -80px;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
    z-index: 150;
  }
  .scrolldown:before {
    background: var(--black);
  }
  .scroll-down-txt {
    font-size: 1.4rem;
  }
}
/*新着
-----------------------------------------------------*/
.top-news {
  position: relative;
  padding: 15px var(--sp-sec) 10px;
  background: var(--black);
  z-index: 100;
}
.top-news .top-news-ttl {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.6rem;
}
.top-news .webgene-blog {
  font-size: 1.2rem;
}
.top-news a {
  color: #fff;
}
.top-news a:hover {
  opacity: 1;
  text-decoration: none;
}
.top-news a:hover .blogttl {
  opacity: var(--hover);
  text-decoration: underline;
}
.top-news .blogdate {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.1rem;
  white-space: nowrap;
}
.top-news .blogcate {
  display: inline-block;
  padding: 0 10px;
  background: var(--red);
  white-space: nowrap;
}
.top-news .top-news-btn {
  text-align: right;
  font-size: 1.1rem;
}
.top-news .top-news-btn a {
  position: relative;
  padding-right: 13px;
  text-decoration: underline;
  min-height: auto;
}
.top-news .top-news-btn a:after, .top-news .top-news-btn a:before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  width: 5px;
  height: 5px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  -webkit-transform: translateY(10%) rotate(45deg);
  transform: translateY(10%) rotate(45deg);
}
.top-news .top-news-btn a:after {
  right: 0;
}
.top-news .top-news-btn a:before {
  right: 4px;
}
.top-news .top-news-btn a:hover {
  opacity: var(--hover);
}

@media screen and (min-width: 768px) {
  .top-news {
    margin-left: auto;
    width: 90vw;
    padding: 20px 40px 20px 30px;
  }
  .top-news .top-news-ttl {
    font-size: 2rem;
  }
  .top-news .webgene-blog {
    font-size: 1.4rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .top-news .blog-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .top-news .blogdate {
    margin-right: 0;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-news {
    width: min(70vw, 1000px);
  }
  .top-news .top-news-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .top-news .top-news-ttl {
    margin-bottom: 0;
    margin-right: 20px;
    font-size: 2.4rem;
  }
}
/*top-catch
-----------------------------------------------------*/
.top-catch {
  margin-top: 30px;
}
.top-catch .catch-head {
  margin-bottom: 20px;
  text-align: center;
}
.top-catch .catch-head .catch-ttl {
  display: inline-block;
  font-size: 1.8rem;
  font-family: var(--shippori);
  font-weight: 500;
  line-height: 2.4;
}
.top-catch .catch-head strong {
  position: relative;
  display: block;
  font-weight: 500;
  padding-left: 76px;
}
.top-catch .catch-head strong:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 70px;
  height: 40px;
  background-image: url(/system_panel/uploads/images/top_catch_txt.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.top-catch .catch-content {
  position: relative;
  padding-bottom: 30px;
}
.top-catch .catch-content:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  content: "";
  background-image: url(/system_panel/uploads/images/top_catch_bg@2x.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100% auto;
  z-index: -1;
}
.top-catch p {
  text-align: center;
  font-family: var(--shippori);
  line-height: 2.4;
}
.top-catch .catch-img {
  margin-top: 30px;
}
.top-catch .catch-img01 {
  margin-right: auto;
  width: 70%;
}
.top-catch .catch-img02 {
  margin-top: -50px;
  margin-left: auto;
  width: 70%;
}

@media screen and (min-width: 768px) {
  .top-catch {
    margin-top: 60px;
  }
  .top-catch .catch-head {
    text-align: left;
  }
  .top-catch .catch-head .catch-ttl {
    margin-bottom: 40px;
    font-size: 3.8rem;
  }
  .top-catch .catch-head .catch-ttl strong {
    padding-left: 190px;
  }
  .top-catch .catch-head .catch-ttl strong:before {
    width: 180px;
    height: 105px;
  }
  .top-catch .catch-content {
    padding-bottom: 30px;
    background-position: right 45vw;
  }
  .top-catch .catch-content:before {
    right: -30px;
    width: 70vw;
    background-position: right 47vw;
  }
  .top-catch .catch-body{
      max-width: 450px;
      width: 47%;
  }
  .top-catch p {
    -moz-text-align-last: left;
    text-align-last: left;
    font-size: 1.8rem;
  }
  .top-catch .catch-img01 {
    width: 55%;
  }
  .top-catch .catch-img02 {
    position: absolute;
    top: min(20vw, 300px);
    right: 0;
    width: 52%;
  }
}
@media screen and (min-width: 1200px) {
  .top-catch .catch-head {
    margin-bottom: 70px;
    font-size: 4.2rem;
  }
  .top-catch .catch-content {
    padding-bottom: 5vw;
  }
  .top-catch .catch-content:before {
    right: max((100vw - 1260px) / -1.5, -300px);
    /*right: max(calc((100vw - 1260px) / -2), -300px);*/
    background-position: right 90%;
    background-size: 100% auto;
  }
  .top-catch .catch-img01 {
    margin-right: auto;
    width: calc((100vw - 60px) / 3);
    margin-left: calc(50% - 50vw + 30px);
  }
  .top-catch .catch-img02 {
    position: absolute;
    top: 0;
    right: calc(50% - 50vw + 30px);
    width: calc((100vw - 60px) / 1.7);
  }
}
/*top-concept-list
-----------------------------------------------------*/
.top-concept-content {
  position: relative;
  padding: 30px 0;
}
.top-concept-content:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 90%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/top_concept_bg.jpg);
  background-repeat: repeat;
  background-size: cover;
  z-index: -1;
}

.top-concept-list {
  margin-left: auto;
  width: 90%;
}
.top-concept-list .concept-item {
  position: relative;
  margin-bottom: 30px;
  padding: 20px;
  max-width: 450px;
  background: #fff;
}
.top-concept-list .concept-item:after {
  position: absolute;
  bottom: 5px;
  right: 10px;
  color: #d2ccbd;
  font-family: var(--shippori);
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.2;
  z-index: 0;
}
.top-concept-list .concept-item:first-child:after {
  content: "01";
}
.top-concept-list .concept-item:nth-child(2):after {
  content: "02";
}
.top-concept-list .concept-item:nth-child(3):after {
  content: "03";
}
.top-concept-list .concept-item-head {
  position: absolute;
  top: -15px;
  left: 30px;
  padding: 12px 0;
  color: #fff;
  font-size: 2rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: var(--shippori);
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--red);
}
.top-concept-list .concept-item-fig {
  margin-bottom: 10px;
}
.top-concept-list .concept-item-txt {
  position: relative;
  text-align: center;
  z-index: 2;
}
.top-concept-list .concept-item-txt strong {
  font-weight: 500;
  color: var(--red);
  font-family: var(--shippori);
  background-image: radial-gradient(circle at center, var(--red) 0.1em, transparent 0.1em);
  background-position: bottom right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-bottom: 0.4em;
}
.top-concept-list .concept-item-txt span br{
  display: none;
}

@media screen and (min-width: 768px) {
  .top-concept .btn-set {
    margin-top: 50px;
  }
  .top-concept-content {
    padding: 90px 0;
  }
  .top-concept-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    max-width: 1680px;
    width: 95%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
  .top-concept-list .concept-item {
    margin-bottom: 0;
    max-width: initial;
  }
  .top-concept-list .concept-item-head {
    top: -20px;
    left: 40px;
    line-height: 1.4;
    font-size: 2.6rem;
  }
  .top-concept-list .concept-item-txt span br{
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .top-concept-content:after {
    width: 80%;
    bottom: -15px;
  }
  .top-concept-list .concept-item {
    padding: 30px 30px 80px;
  }
  .top-concept-list .concept-item:after {
    font-size: 8rem;
  }
  .top-concept-list .concept-item-head {
    font-size: 6rem;
  }
  .top-concept-list .concept-item-fig {
    margin-bottom: 20px;
  }
  .top-concept-list .concept-item-txt {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .top-concept-list .concept-item-txt span br{
    display: none;
  }
}
/*top-menu
-----------------------------------------------------*/
.top-menu{
    overflow: hidden;
}
.top-menu .section-inner {
  position: relative;
}

.top-menu-item {
  position: relative;
  margin: 0 var(--sp-sec) 20px;
  padding-bottom: 20px;
}
.top-menu-item:before {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100vw - var(--sp-sec) * 2);
  height: 100%;
  content: "";
  background-image: url(/system_panel/uploads/images/top_menu_bg.jpg);
  background-repeat: repeat;
  background-size: contain;
  z-index: -1;
}
.top-menu-item:last-child {
  margin-bottom: 0;
}
.top-menu-item .menu-body {
  padding: 20px;
}
.top-menu-item .menu-ttl {
  margin-bottom: 15px;
  padding-left: 28px;
  font-size: 2rem;
  background-image: url(/system_panel/uploads/images/top_menu_icon@2x.png);
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: 0 50%;
}
.top-menu-item .menu-fig01 {
  margin-right: -20px;
}
.top-menu-item .menu-fig02 {
  margin: -50px auto 0 -20px;
  width: 60%;
}
.top-menu-item.reverse:before {
  left: 0;
  right: auto;
}
.top-menu-item.reverse .menu-body {
  margin-right: -20px;
}
.top-menu-item.reverse .menu-fig01 {
  margin-right: 0;
  margin-left: -20px;
}
.top-menu-item.reverse .menu-fig02 {
  margin-left: auto;
  margin-right: -20px;
}

@media screen and (min-width: 768px) {
  .top-menu-item:before {
    width: calc(100vw - var(--sp-sec) * 2.5);
  }
  .top-menu-item .menu-body {
    padding: 30px;
  }
  .top-menu-item .menu-fig01 {
    margin-right: -30px;
    margin-left: auto;
    width: 60%;
  }
  .top-menu-item .menu-fig02 {
    margin-top: -210px;
    margin-left: -20px;
    width: 50%;
  }
  .top-menu-item.reverse .menu-fig01 {
    margin-left: -30px;
    margin-right: 0;
  }
  .top-menu-item.reverse .menu-fig02 {
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (min-width: 1200px) {
  .top-menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 50px;
    margin-bottom: 150px;
  }
  .top-menu-item:before {
    display: none;
  }
  .top-menu-item .menu-body {
    position: relative;
    max-width: 500px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 70px 0 70px 50px;
    margin-bottom: 0;
  }
  .top-menu-item .menu-body:before {
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    width: 100vw;
    /*height: 90%;*/
    height: 440px;
    content: "";
    background-image: url(/system_panel/uploads/images/top_menu_bg.jpg);
    background-repeat: repeat;
    background-size: contain;
    z-index: -1;
  }
  .top-menu-item .menu-ttl {
    margin-bottom: 40px;
    padding-left: 35px;
    font-size: 2.4rem;
    background-size: 25px auto;
  }
  .top-menu-item .menu-txt {
    margin-bottom: 40px;
    font-size: 1.6rem;
  }
  .top-menu-item .menu-fig {
    position: relative;
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0 max(50% - 50vw, -360px) 0 0;
  }
  .top-menu-item .menu-fig01 {
    margin-top: -40px;
    margin-left: auto;
    width: 90%;
  }
  .top-menu-item .menu-fig02 {
    position: absolute;
    bottom: -70px;
    left: -60px;
    width: 40%;
    max-width: 350px;
    /*margin-top: -60px;
    margin-left: 30px;
    width: 50%;
    max-width: 350px;*/
  }
  .top-menu-item.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .top-menu-item.reverse:before {
    right: 0;
    left: auto;
  }
  .top-menu-item.reverse .menu-fig {
    margin: 0 0 0 max(50% - 50vw, -360px);
  }
  .top-menu-item.reverse .menu-fig .menu-fig01 {
    margin-left: 0;
    margin-right: 0;
  }
  .top-menu-item.reverse .menu-fig .menu-fig02 {
    left: auto;
    right: -60px;
  }
  .top-menu-item .btn-set {
    position: relative;
  }
  .top-menu-item .btn-set:after {
    position: absolute;
    bottom: -130px;
    right: 0;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    height: 75px;
    width: 200px;
  }
  .top-menu-item.food .btn-set:after {
    background-image: url(/system_panel/uploads/images/top_food_bg@2x.png);
  }
  .top-menu-item.drink .btn-set:after {
    bottom: -160px;
    right: 80px;
    background-image: url(/system_panel/uploads/images/top_drink_bg@2x.png);
  }
  .top-menu-item.course .btn-set:after {
    background-image: url(/system_panel/uploads/images/top_course_bg@2x.png);
  }
}
/*top-shop
-----------------------------------------------------*/
.top-shop-list {
  margin: 0 auto;
  max-width: 450px;
}
.top-shop-list a {
  text-decoration: none;
}
.top-shop-list .shop-item {
  margin-bottom: 10px;
}
.top-shop-list .shop-item-body {
  position: relative;
  padding: 10px 20px;
  color: #fff;
  font-family: var(--shippori);
  background: var(--red);
}
.top-shop-list .shop-item-body:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 10px;
  -webkit-transform: translateY(calc(-50% - 2px)) rotate(30deg);
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-shop-list .shop-item-body:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .top-shop-list {
    max-width: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .top-shop-list .shop-item {
    margin-bottom: 0;
  }
  .top-shop-list .shop-item-body {
    padding: 10px 20px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-shop-list {
    gap: 30px;
  }
  .top-shop-list .shop-item-body {
    padding: 15px 25px;
    font-size: 2.2rem;
  }
}
/*-----------------------------------------------------
	こだわり
-----------------------------------------------------*/
/*concept-lead 
-----------------------------------------------------*/
.concept-lead {
  position: relative;
}
.concept-lead .concept-bg {
  padding: 50px 0;
  background-image: url(/system_panel/uploads/images/concept-lead-bg@1.5x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.concept-lead .lead-txt {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.6rem;
  font-family: var(--shippori);
}
.concept-lead .concept-lead-fig {
  margin: 0 auto;
  width: 80%;
}
.concept-lead .lead-txt strong{
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .concept-lead .lead-txt strong br{
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .concept-lead .concept-bg {
    padding: 120px 0;
  }
  .concept-lead .lead-txt {
    margin-bottom: 60px;
    font-size: 2.4rem;
  }
}
/*concept-lead
-----------------------------------------------------*/
.concept-lists {
  margin-top: var(--sp-mgt);
}
.concept-lists .concept-item {
  position: relative;
  margin-bottom: 30px;
}
.concept-lists .concept-item:before {
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: calc(100% + var(--sp-sec));
  height: 90%;
  content: "";
  background-image: url(/system_panel/uploads/images/top_menu_bg.jpg);
  background-repeat: repeat;
  background-size: contain;
  z-index: -1;
}
.concept-lists .concept-body {
  position: relative;
  padding: 30px 20px 20px;
}
.concept-lists .concept-body:after {
  position: absolute;
  top: 0;
  right: 20px;
  content: "";
  width: 50%;
  height: 80%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: left 20px;
  z-index: -1;
}
.concept-lists .concept-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.concept-lists .concept-header img {
  width: auto;
  height: 60px;
  vertical-align: center;
}
.concept-lists .concept-head {
  margin-left: 10px;
  font-size: 2.2rem;
  font-family: var(--shippori);
  line-height: 60px;
}
.concept-lists .concept-subhead {
  margin-bottom: 25px;
  font-size: 1.7rem;
  font-family: var(--shippori);
  line-height: 1.8;
}
.concept-lists .concept-subhead strong {
  font-weight: normal;
  color: var(--red);
  background-image: radial-gradient(circle at center, var(--red) 0.1em, transparent 0.1em);
  background-position: 0 bottom;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-bottom: 0.4em;
}
.concept-lists .concept-img01 {
  margin-top: 20px;
}
.concept-lists .concept-img02 {
  padding: 0 20px;
}
.concept-lists .btn-set {
  margin-top: 30px;
}
.concept-lists .meet .concept-body:after {
  background-image: url(/system_panel/uploads/images/concept-meat-bg@1.5x.png);
}
.concept-lists .tare .concept-body:after {
  background-image: url(/system_panel/uploads/images/concept-tare-bg@1.5x.png);
}
.concept-lists .shop .concept-body:after {
  width: 30%;
  background-image: url(/system_panel/uploads/images/concept-shop-bg@1.5x.png);
}

@media screen and (min-width: 768px) {
  .concept-lists {
    margin-top: var(--pc-mgt);
  }
  .concept-lists .concept-body {
    padding-top: 40px;
  }
  .concept-lists .concept-head {
    font-size: 2.4rem;
  }
  .concept-lists .concept-subhead {
    font-size: 2rem;
  }
  .concept-lists .concept-img01 {
    width: 60%;
  }
  .concept-lists .concept-img02 {
    position: relative;
    margin-top: -180px;
    margin-left: auto;
    margin-right: calc(50% - 50vw);
    width: 55%;
    z-index: 1;
  }
}
@media screen and (min-width: 1024px) {
  .concept-lists .concept-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 40px;
    margin-bottom: 80px;
  }
  .concept-lists .concept-item:before {
    width: 80vw;
    height: 80%;
    content: "";
  }
  .concept-lists .concept-item.reverse .concept-body {
    padding: 70px 50px 70px 0;
  }
  .concept-lists .concept-body {
    position: relative;
    max-width: 650px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 70px 0 70px 50px;
  }
  .concept-lists .concept-header {
    margin-bottom: 20px;
  }
  .concept-lists .concept-header img {
    height: 100px;
  }
  .concept-lists .concept-head {
    font-size: 3rem;
  }
  .concept-lists .concept-subhead {
    margin-bottom: 50px;
    font-size: 2.4rem;
  }
  .concept-lists .concept-img01 {
    margin-top: 30px;
    width: 100%;
  }
  .concept-lists .concept-img02 {
    position: relative;
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 50px max(50% - 50vw, -200px) 0 0;
    width: 60%;
  }
  .concept-lists .btn-set {
    margin-top: 50px;
  }
  .concept-lists .meet .concept-body:after {
    width: 20vw;
    height: 300px;
    left: -5vw;
  }
  .concept-lists .tare .concept-body:after {
    width: 20vw;
    height: 500px;
    left: auto;
    right: 0;
    top: -75px;
  }
  .concept-lists .shop .concept-body:after {
    width: 17vw;
    height: 500px;
    top: -40px;
    left: -5vw;
  }
  .concept-item.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .concept-item.reverse:before {
    left: auto;
    right: calc(50% - 50vw);
  }
  .concept-item.reverse .concept-img02 {
    margin: 100px 0 0 max(50% - 50vw, -200px);
  }
}
@media screen and (min-width: 1024px) {
  .concept-lists .concept-item {
    gap: 0 40px;
  }
}
/*-----------------------------------------------------
	メニュー
-----------------------------------------------------*/
/*recommend menu
-----------------------------------------------------*/
.recommend-box {
  border: 1px solid var(--red);
}
.recommend-box .recommend-body {
  padding: 20px min(5vw, 30px);
  background-image: url(/system_panel/uploads/images/top_menu_bg.jpg);
  background-repeat: repeat;
  background-size: contain;
  z-index: -1;
}
.recommend-box .recommend-head {
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-family: var(--shippori);
  border-bottom: 1px solid var(--red);
}
.recommend-box .menu-name {
  font-size: 2rem;
  color: var(--red);
  letter-spacing: 0.03em;
}

@media screen and (min-width: 768px) {
  .recommend-box {
    margin: 50px auto 0;
    max-width: 1050px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .recommend-box .recommend-fig {
    width: 45%;
  }
  .recommend-box .recommend-fig img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    width: 100%;
    height: 100%;
  }
  .recommend-box .recommend-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0;
  }
  .recommend-box .recommend-info {
    width: 80%;
    max-width: 375px;
  }
  .recommend-box .recommend-head {
    margin-bottom: 35px;
  }
  .recommend-box .menu-name {
    font-size: 2.4rem;
  }
}
.recommend-lists {
  margin-top: var(--sp-mgt);
  padding: 20px;
  background-image: url(/system_panel/uploads/images/top_menu_bg.jpg);
  background-repeat: repeat;
  z-index: -1;
}
.recommend-lists .recommend-item {
  margin-bottom: 20px;
}
.recommend-lists .recommend-item:last-child {
  margin-bottom: 0;
}
.recommend-lists .recommend-fig {
  margin-bottom: 10px;
}
.recommend-lists .menu-name {
  font-family: var(--shippori);
  font-size: 1.6rem;
}
.recommend-lists .txt-bg-red {
  font-family: var(--shippori);
}

@media screen and (min-width: 768px) {
  .recommend-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    max-width: 1320px;
  }
  .recommend-lists .recommend-item {
    margin-bottom: 0;
  }
  .recommend-lists .menu-name {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .recommend-lists {
    padding: 60px;
    gap: 20px;
  }
  .recommend-lists .menu-name {
    font-size: 2.1rem;
  }
}
@media screen and (min-width: 1320px) {
  .recommend-lists {
    margin: var(--pc-mgt) calc(50% - 660px);
  }
}
/*food-menu
-----------------------------------------------------*/
.menu-link-links {
  text-align: center;
}
.menu-link-links .menu-link-item {
  display: inline-block;
}
.menu-link-links .menu-link-item:after {
  margin: 0 5px 0 10px;
  content: "｜";
}
.menu-link-links .menu-link-item:last-child:after {
  display: none;
}
.menu-link-links a {
  color: var(--black);
}

.menu-box {
  margin-top: 30px;
  padding: 20px 30px;
  background: #fff;
}
.menu-box .menu-header {
  margin-bottom: 10px;
}
.menu-box .menu-head {
  font-size: 1.6rem;
  font-family: var(--shippori);
  color: var(--red);
}
.menu-box .menu-head:before {
  margin-right: 3px;
  content: "■";
}
.menu-box .menu-tbl-tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}
.menu-box .menu-tbl-tr.is-pc {
  display: none;
}
.menu-box .menu-tbl-tr p {
  margin-bottom: 10px;
}
.menu-box .menu-tbl-th .txt-indent {
  margin-top: -8px;
  text-indent: -1em;
  margin-left: 2em;
}
.menu-box .menu-tbl-td {
  text-align: right;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .menu-link-links {
    margin: 0 auto;
    max-width: 1000px;
  }
  .menu-link-links .menu-link-item {
    font-size: 1.8rem;
  }
  .menu-link-links .menu-link-item:after {
    margin: 0 10px 0 10px;
  }
  .menu-box {
    margin-top: 50px;
    padding: 50px 100px;
  }
  .menu-box .menu-header {
    margin-bottom: 15px;
  }
  .menu-box .menu-head {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .menu-box .menu-tbl .menu-tbl-tr.is-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu-box .menu-tbl .menu-tbl-tr.is-sp {
    display: none;
  }
  .menu-box .menu-tbl.col02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 40px;
  }
  .menu-box .menu-tbl.col02 .menu-tbl-tr {
    width: calc(50% - 40px);
  }
}
@media screen and (min-width: 1320px) {
  .menu-box {
    margin: 50px calc(50% - 660px) 0;
    padding: 50px 160px;
  }
}
.fig-lists {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fig-item{
  max-width: 390px;
  width: calc(100% / 3);
}

@media screen and (min-width: 768px) {
  .fig-lists {
    margin-top: 50px;
  }
}
/*drink-menu
-----------------------------------------------------*/
.drink-catch.txt-catch strong{
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .drink-catch.txt-catch strong br{
    display: none;
  }
}

/*course-box
-----------------------------------------------------*/
.course-box {
  margin-top: var(--sp-mgt);
  background: #fff;
}
.course-box .course-header {
  padding-bottom: 10px;
  font-family: var(--shippori);
  border-bottom: 1px solid var(--red);
}
.course-box .course-head {
  font-size: 1.6rem;
}
.course-box .course-price {
  text-align: right;
  color: var(--red);
  font-family: var(--shippori);
  font-size: 2rem;
  line-height: 1;
}
.course-box .txt-price {
  white-space: nowrap;
}
.course-box .course-header + .course-price {
  margin-top: 10px;
}
.course-box .course-info {
  padding: 20px 30px;
}
.course-box .course-content {
  margin-top: 20px;
}
.course-box .course-item {
  margin-bottom: 8px;
}
.course-box .course-item p {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.6;
}
.course-box .course-item p:before {
  display: inline;
  content: "・";
}
.course-box.bg-img {
  margin-top: 90px;
  margin-bottom: 90px;
  position: relative;
}
.course-box.bg-img:after {
  position: absolute;
  top: -40px;
  left: calc(50% - 50vw);
  width: 100vw;
  height: calc(100% + 80px);
  content: "";
  background-image: url(/system_panel/uploads/images/top_concept_bg.jpg);
  background-repeat: repeat;
  background-size: auto;
  z-index: -1;
}
.course-box.recommend .course-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .course-box .course-info {
    padding: 50px 30px;
  }
  .course-box .course-head {
    font-size: 2.1rem;
  }
  .course-box .course-price {
    font-size: 3.6rem;
  }
  .course-box .course-content {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .course-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 70px;
  }
  .course-box .course-body,
  .course-box .course-fig {
    width: 50%;
  }
  .course-box .course-info {
    padding: 50px min(4vw, 50px) 50px;
  }
  .course-box .course-fig img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .course-box.bg-img {
    margin-top: 130px;
    margin-bottom: 130px;
  }
  .course-box.bg-img:after {
    top: -60px;
    height: calc(100% + 120px);
  }
  .course-box.recommend .course-body {
    width: 100%;
  }
  .course-box.recommend .course-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 110px;
  }
}
/*-----------------------------------------------------
	店舗案内
-----------------------------------------------------*/
/*shop-box
-----------------------------------------------------*/
.shop-box .shop-body {
  margin-bottom: 20px;
}
.shop-box .shop-tbl {
  border-top: 1px solid var(--black);
  font-family: var(--sans);
  font-weight: 500;
}
.shop-box .shop-tbl-tr {
  padding: 10px 0;
  border-bottom: 1px solid var(--black);
}
.shop-box .shop-tbl-th {
  width: 30%;
}
.shop-box .shop-tbl-td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.shop-box a[href*="tel:"] {
  color: var(--black);
}
.shop-box .shop-info-box .shop-time-box {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .shop-box .shop-body {
    margin-bottom: 40px;
  }
  .shop-box .shop-tbl-tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 20px;
  }
}
@media screen and (min-width: 1024px) {
  .shop-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .shop-box .shop-fig {
    width: 45%;
  }
  .shop-box .shop-body {
    margin-bottom: 0;
    width: 50%;
  }
}
/*seat-box
-----------------------------------------------------*/
.seat-box {
  position: relative;
  margin-bottom: 40px;
}
.seat-box:after {
  position: absolute;
  top: 50%;
  left: calc(50% - 50vw);
  content: "";
  width: 100vw;
  height: 80%;
  background-image: url(/system_panel/uploads/images/top_concept_bg.jpg);
  background-size: contain;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.seat-box .seat-body {
  position: relative;
  margin-right: auto;
  width: 95%;
  max-width: 500px;
  background: #fff;
  z-index: 2;
}
.seat-box .seat-info {
  padding: 20px;
  font-family: var(--sans);
  font-weight: 500;
}
.seat-box .seat-header {
  margin: 30px 0;
}
.seat-box .seat-header .seat-head {
  position: relative;
  display: inline-block;
  font-family: var(--shippori);
  font-size: 2rem;
}
.seat-box .seat-header .seat-head:after {
  position: absolute;
  top: 50%;
  right: -40px;
  content: "";
  width: 80px;
  height: 80px;
  background-image: url(/system_panel/uploads/images/shop-seat-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.seat-box .seat-fig {
  position: relative;
  margin-top: -40px;
  margin-left: auto;
  width: 90%;
  max-width: 500px;
  z-index: 1;
}
.seat-box.reverse .seat-body {
  margin-right: 0;
  margin-left: auto;
}
.seat-box.reverse .seat-fig {
  margin-left: 0;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .seat-box .seat-body {
    max-width: 600px;
  }
  .seat-box .seat-info {
    padding: 40px;
  }
  .seat-box .seat-header .seat-head {
    font-size: 2.4rem;
  }
  .seat-box .seat-header .seat-head:after {
    right: -50px;
  }
  .seat-box .seat-fig {
    margin-top: -100px;
    max-width: 600px;
  }
}
@media screen and (min-width: 1024px) {
  .seat-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1300px;
    margin-bottom: 80px;
  }
  .seat-box:after {
    top: auto;
    bottom: -20px;
    left: auto;
    right: calc(50% - 50vw);
    width: min(97vw, 1650px);
    height: 90%;
    max-height: 380px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .seat-box .seat-body {
    margin-left: auto;
    margin-right: min(4%, -50px);
    width: 49%;
    max-width: initial;
  }
  .seat-box .seat-info {
    padding: 80px 60px;
  }
  .seat-box .seat-header {
    margin-bottom: 70px;
  }
  .seat-box .seat-header .seat-head:after {
    width: 125px;
    height: 125px;
    right: -80px;
  }
  .seat-box .seat-fig {
    margin-top: 0;
    width: 54%;
    max-width: initial;
  }
  .seat-box.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .seat-box.reverse:after {
    right: auto;
    left: calc(50% - 50vw);
  }
  .seat-box.reverse .seat-body {
    margin-right: auto;
    margin-left: min(4%, -50px);
  }
}
/*-----------------------------------------------------
	採用情報
-----------------------------------------------------*/
.recruit-catch strong {
  font-weight: normal;
  color: var(--red);
  font-family: var(--shippori);
  background-image: radial-gradient(circle at center, var(--red) 0.08em, transparent 0.08em);
  background-position: bottom right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-bottom: 0.4em;
}
.recruit-catch .note-box .text-note {
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .recruit-catch .txt-catch {
    font-size: 3rem;
  }
  .recruit-catch .note-box .text-note {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .recruit-catch .txt-catch span br{
    display: none;
  }
}
/* メリット
-----------------------------------------------------*/
.recruit-merit-list .merit-item {
  margin-bottom: 20px;
}
.recruit-merit-list .merit-fig {
  margin-bottom: 10px;
}
.recruit-merit-list .merit-head {
  margin-bottom: 12px;
  padding: 6px 0 10px 8px;
  font-size: 1.8rem;
  font-family: var(--shippori);
  color: var(--red);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--red);
  border-left: 4px solid var(--red);
}
.recruit-merit-list .merit-txt {
  padding-left: 8px;
}

@media screen and (min-width: 768px) {
  .recruit-merit-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .recruit-merit-list .merit-item {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .recruit-merit-list {
    gap: 40px;
  }
  .recruit-merit-list .merit-fig {
    margin-bottom: 20px;
  }
  .recruit-merit-list .merit-head {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 2.4rem;
    letter-spacing: 0.04em;
  }
  .recruit-merit-list .merit-txt {
    padding-left: 15px;
  }
}
/* 仕事内容
-----------------------------------------------------*/
.recruit-outline {
  position: relative;
  margin-bottom: 50px;
  padding: 30px 0 60px;
}
.recruit-outline:before {
  position: absolute;
  bottom: -20px;
  content: "";
  width: 200px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
}
.recruit-outline:after {
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  content: "";
  background-color: #fff;
  z-index: -1;
}
.recruit-outline .outline-body {
  margin-bottom: 20px;
}
.recruit-outline .outline-head {
  margin-bottom: 20px;
  font-family: var(--shippori);
  font-size: 2rem;
  color: var(--red);
}
.recruit-outline.outline01:before {
  left: 30px;
  background-image: url(/system_panel/uploads/images/top_food_bg@2x.png);
}
.recruit-outline.outline02:before {
  right: 30px;
  background-image: url(/system_panel/uploads/images/top_course_bg@2x.png);
  background-position: right 0;
}

@media screen and (min-width: 768px) {
  .recruit-outline {
    margin-bottom: 80px;
    padding: 40px 30px 100px;
  }
  .recruit-outline:before {
    width: 250px;
    height: 85px;
  }
  .recruit-outline .outline-head {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .recruit-outline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 40px;
    max-width: 1440px;
    padding-right: 0;
    padding-left: 0;
  }
  .recruit-outline:after {
    left: 0;
    width: min(90vw, 1200px);
  }
  .recruit-outline .outline-body {
    margin-bottom: 0;
    padding: 40px 40px 40px 80px;
    width: 50%;
  }
  .recruit-outline .outline-head {
    margin-bottom: 30px;
  }
  .recruit-outline .outline-fig {
    width: 60%;
    margin-left: auto;
    margin-right: 0;
  }
  .recruit-outline.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .recruit-outline.reverse:after {
    left: auto;
    right: 0;
  }
  .recruit-outline.reverse .outline-body {
    padding: 40px 80px 40px 40px;
  }
  .recruit-outline.outline01:before {
    left: -20px;
  }
  .recruit-outline.outline02:before {
    right: -20px;
  }
}
@media screen and (min-width: 1300px) {
  .recruit-outline:before {
    width: 280px;
    height: 110px;
  }
  .recruit-outline:after {
    left: min(-0.5vw, 50% - 720px);
  }
  .recruit-outline .outline-fig {
    margin-right: min(-0.1vw, 50% - 720px);
  }
  .recruit-outline.reverse .outline-fig {
    margin-right: auto;
    margin-left: min(-0.1vw, 50% - 720px);
  }
  .recruit-outline.reverse:after {
    right: min(-0.5vw, 50% - 720px);
  }
  .recruit-outline.reverse.outline02:before {
    right: 80px;
  }
}
/* 募集要項
-----------------------------------------------------*/
.recruit-desc-tbl {
  border-top: 1px solid #666;
}
.recruit-desc-tbl .desc-tbl-tr {
  padding: 20px 0;
  border-bottom: 1px solid #666;
}
.recruit-desc-tbl .desc-tbl-th {
  font-weight: 600;
}
.recruit-desc-tbl .desc-tbl-td {
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .recruit-desc-tbl .desc-tbl-tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .recruit-desc-tbl .desc-tbl-th {
    padding-left: 10px;
    font-weight: 400;
    width: 190px;
  }
  .recruit-desc-tbl .desc-tbl-th p {
    white-space: nowrap;
  }
  .recruit-desc-tbl .desc-tbl-td {
    padding-right: 10px;
    line-height: 1.875;
  }
}
@media screen and (min-width: 1024px) {
  .recruit-desc-tbl .desc-tbl-tr {
    gap: 40px;
  }
  .recruit-desc-tbl .desc-tbl-th {
    padding-left: 30px;
  }
  .recruit-desc-tbl .desc-tbl-td {
    padding-right: 30px;
  }
}
/* 連絡先等
-----------------------------------------------------*/
.recruit-message {
  margin-top: 30px;
  text-align: center;
  font-family: var(--shippori);
  font-size: 1.6rem;
}

.recruit-contact {
  margin: 30px auto 0;
  padding: 30px 20px;
  max-width: 400px;
  background: #fff;
  border: 6px solid #6f4f2d;
}
.recruit-contact .shop-info-content {
  margin: 20px auto 10px;
  padding: 0 10px;
  width: auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.recruit-contact .shop-head {
  width: 70px;
}
.recruit-contact .shop-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (min-width: 768px) {
  .recruit-message {
    margin-top: 60px;
    font-size: 1.8rem;
  }
  .recruit-contact {
    margin: 60px auto 0;
    padding: 40px 40px;
    max-width: 580px;
  }
  .recruit-contact .shop-head {
    width: 80px;
  }
}
/*-----------------------------------------------------
	お問い合わせ
-----------------------------------------------------*/
.contact-wrap {
  margin-top: -50px;
  padding: 50px 0;
  background-color: #fff;
}

.contact-catch .catch-box {
  background-image: none;
}
.contact-catch .note-box .text-note {
  font-size: 1.6rem;
}

.contact-info-lists .contact-box01, .contact-info-lists .contact-box02 {
  margin: 40px auto 0;
  padding: 30px 0;
  max-width: 600px;
}
.contact-info-lists .contact-box01:first-child {
  margin-top: 0;
}
.contact-info-lists .contact-header {
  text-align: center;
}
.contact-info-lists .contact-head {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 20px;
  width: 140px;
  font-size: 1.8rem;
  color: #fff;
}
.contact-info-lists .txt-contact {
  text-align: center;
}
.contact-info-lists .line-yellow strong {
  font-weight: normal;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #fdff68), to(#fdff68));
  background: linear-gradient(transparent 70%, #fdff68 70%, #fdff68 100%);
}
.contact-info-lists .contact-app-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}
.contact-info-lists .contact-app-list .app-item {
  width: 70px;
}

.contact-box01 {
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
}
.contact-box01:first-child {
  margin-top: 0;
}
.contact-box01 .contact-head {
  background: var(--red);
}
.contact-box01 .shop-info-content {
  margin-inline: auto;
  max-width: 320px;
}
.contact-box01 .shop-info-content:last-child {
  margin-bottom: 0;
}
.contact-box01 .shop-head {
  width: 70px;
}

.contact-box02 {
  position: relative;
  padding-inline: 20px !important;
  border: 3px solid #06c755;
  border-radius: 6px;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f3f3f3 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f3f3f3 calc(100% - 1px));
  background-size: 14px 14px;
  background-repeat: repeat repeat;
  background-position: center center;
  background-color: #fff;
}
.contact-box02:after {
  position: absolute;
  bottom: 0;
  left: 10px;
  content: "";
  width: 90px;
  height: 90px;
  background-image: url(/system_panel/uploads/images/line-bg-img@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.contact-box02 .contact-head {
  border-radius: 30px;
  background: #06c755;
}

@media screen and (min-width: 768px) {
  .contact-wrap {
    margin-top: -120px;
    padding: 100px 0;
  }
  .contact-catch .note-box .text-note {
    font-size: 2rem;
  }
  .contact-info-lists .contact-box01, .contact-info-lists .contact-box02 {
    margin-top: 60px;
    padding: 40px 0;
  }
  .contact-info-lists .contact-head {
    margin-bottom: 30px;
    padding: 10px 20px;
    width: 179px;
    font-size: 2.2rem;
  }
  .contact-info-lists .contact-app-list {
    gap: 45px;
    margin-top: 30px;
  }
  .contact-info-lists .contact-app-list .app-item {
    width: 80px;
  }
  .contact-info-lists .txt-tel {
    font-size: 4.2rem;
  }
  .contact-box01 .shop-info-content {
    max-width: 500px;
  }
  .contact-box01 .shop-head {
    width: 120px;
  }
  .contact-box02:after {
    left: 20px;
    width: 130px;
    height: 130px;
  }
}
@media screen and (min-width: 1024px) {
  .contact-info-lists .contact-head {
    font-size: 2.4rem;
  }
}
/* プライバシーポリシー
-----------------------------------------------------*/
.privacy-wrap {
  padding-top: 50px;
}

.privacyBox {
  overflow-y: scroll;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
  height: 300px;
  border: 1px solid #9f9f9e;
  padding: 30px 30px 0;
  background: #fff;
}

.privacyDd {
  margin-bottom: 30px;
}
.privacyDd a {
  color: var(--black);
  text-decoration: underline;
}
.privacyDd a:hover {
  opacity: --hover;
}
.privacyDd a[href*="tel:"] {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .privacy-wrap {
    padding-top: 120px;
  }
}
/*-----------------------------------------------------
	新着情報
-----------------------------------------------------*/
/* 一覧
-----------------------------------------------------*/
.news-wrap {
  margin-top: var(--sp-mgt);
}

.news-lists {
  margin-bottom: 50px;
}
.news-lists .webgene-blog {
  border-top: 1px solid #ccc;
}
.news-lists .webgene-item {
  border-bottom: 1px solid #ccc;
}
.news-lists .webgene-item a {
  display: block;
  padding: 20px 5px;
  color: var(--black);
  text-decoration: none;
}
.news-lists .blog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news-lists .blogdate {
  font-size: 1.2rem;
}
.news-lists .blogcate {
  margin-left: 10px;
  padding: 0 10px;
  font-size: 1.2rem;
  color: #fff;
  background: var(--red);
}
.news-lists .blogttl {
  width: 100%;
}
.news-lists a:hover .blogttl {
  text-decoration: underline;
}
.news-lists .webgene-pagination {
  margin-top: 20px;
}
.news-lists .webgene-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.news-lists .webgene-pagination li a {
  display: block;
  padding: 0 10px;
  color: var(--black);
  background: #dfdfdf;
}
.news-lists .webgene-pagination li.selected a {
  color: #fff;
  background: var(--red);
}

.news-aside .news-aside-head {
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: var(--red);
  border-bottom: 3px solid var(--red);
}
.news-aside .webgene-item {
  margin-bottom: 5px;
}
.news-aside .webgene-item a {
  color: var(--black);
}

@media screen and (min-width: 1024px) {
  .news-wrap {
    margin-top: var(--pc-mgt);
  }
  .news-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .news-lists {
    margin-bottom: 0;
    width: 75%;
  }
  .news-lists .webgene-item a {
    padding: 25px 20px;
  }
  .news-lists .blogttl {
    margin-top: 10px;
  }
  .news-lists .blogdate {
    font-size: 1.6rem;
  }
  .news-lists .blogcate {
    margin-left: 20px;
    padding: 0 15px;
    font-size: 1.4rem;
  }
  .news-lists .webgene-pagination {
    margin-top: 50px;
  }
  .news-lists .webgene-pagination ul {
    gap: 20px;
  }
  .news-lists .webgene-pagination li a {
    padding: 5px 15px;
  }
  .news-aside {
    width: 20%;
  }
  .news-aside .news-aside-head {
    font-size: 1.8rem;
  }
  .news-aside .webgene-item {
    margin-bottom: 10px;
  }
}
/* 記事
-----------------------------------------------------*/
.news-article {
  margin-bottom: var(--sp-mgt);
}
.news-article .info-detail-top {
  margin-bottom: 20px;
  padding-bottom: 10px;
  text-align: center;
  border-bottom: 1px solid #ccc;
}
.news-article .blogdate {
  margin-bottom: 5px;
  font-size: 1rem;
}
.news-article .info-detail-ttl {
  font-size: 1.8rem;
}

@media screen and (min-width: 1024px) {
  .news-article {
    margin: 0 auto var(--pc-mgt);
    max-width: 1000px;
  }
  .news-article .info-detail-top {
    margin-bottom: 30px;
    padding-bottom: 40px;
  }
  .news-article .blogdate {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .news-article .info-detail-ttl {
    font-size: 2.1rem;
  }
}
