@charset "utf-8";

/*=======================================================================
   ##common
=======================================================================*/
body {
  margin: 0 auto;
  padding: 0;
  font-size: 14px;
  line-height: 1.7;
  position: relative;
  color: #333;
  font-family: 'Times New Roman', Times, 'YuMincho', '游明朝', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho', sans-serif;
  font-weight: 400;
  text-align: left;
  min-width: 980px;
  background-color: #f5f5f5;
}

img {
  width: 100%;
}

.news_wrap img {
  width: auto;
}

a {
  text-decoration: none;
  opacity: 1;
  transition: 0.3s;
  color: #333;
}

a img {
  transition: 0.3s;
  backface-visibility: hidden;
  opacity: 1;
}

a.all {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

a.btn {
  color: #fff;
  background-color: #000;
  max-width: 250px;
  width: 80%;
  display: inline-block;
  padding: 15px 20px;
  position: relative;
  transition: ease-in-out 0.3s;
}

a.btn:before {
  content: '';
  width: 40px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  transition: ease-in-out .5s;
}

a.btn:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 4px 8px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  top: 0;
  bottom: 3px;
  right: 23px;
  margin: auto;
  transform: rotate(-60deg);
  transition: ease-in-out .5s;
}

a.tel,
a.fax {
  pointer-events: none;
}

a.tel:before,
a.fax:before {
  content: '';
  margin-right: 10px;
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/ico_tel.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 3px;
}

a.fax:before {
  background-image: url(../img/ico_fax.svg);
}

.move {
  transform: scale(0.98);
  transition: ease-out 1s;
  opacity: 0;
}

.move.in {
  transform: scale(1);
  opacity: 1;
}

.fadein {
  visibility: hidden;
  opacity: 0;
  transition: ease-out 1s;
  position: relative;
  top: 30px;
}

.fadein.delay_03 {
  transition-delay: 0.3s;
}

.fadein.delay_1 {
  transition-delay: 1s;
}

.fadein.on {
  visibility: visible;
  opacity: 1;
  top: 0;
}

.fade {
  visibility: hidden;
  opacity: 0;
  transition: ease-out 1s;
}

.fade.on {
  visibility: visible;
  opacity: 1;
}

main {}

.wrap {
  width: 100%;
  /* padding: 0 70px 0 30px;
	overflow-x: hidden;
	max-width: 1850px; */
  margin-left: auto;
}

.nopc {
  display: none;
}

/*=======================================================================
   ##header
=======================================================================*/
header {
  width: 70px;
  height: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.logo {
  width: 90%;
  height: 85px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 6;
  transition: ease-out 1s;
  opacity: 1;
}

header.active .logo {
  opacity: 0;
  pointer-events: none;
}

.logo img {
  width: 100%;
}

.logo img:last-of-type {
  display: none;
}

.menu_btn {
  background-image: url(../img/menu_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: 100px;
  position: relative;
  cursor: pointer;
  z-index: 5;
}

.menu_btn p {
  position: absolute;
  width: 36px;
  height: 40px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.menu_btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  display: inline-block;
  transition: all .4s;
}

.menu_btn span:nth-of-type(1) {
  top: 0;
}

.menu_btn span:nth-of-type(2) {
  top: 10px;
}

.menu_btn span:nth-of-type(3) {
  top: 20px;
}

header.active .menu_btn span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

header.active .menu_btn span:nth-of-type(2) {
  opacity: 0;
}

header.active .menu_btn span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

.menu_btn b {
  display: block;
  color: #fff;
  font-size: 11px;
  text-align: center;
  padding-top: 23px;
}

header nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  width: 0;
  height: 100vh;
  background-color: #fff;
  opacity: 0;
  transition: linear 1s;
  transition-delay: 0s;
  overflow: hidden;
}

header.active nav {
  width: 100%;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

header nav section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  padding: 5vh 0 0;
  pointer-events: none;
}

header.active nav section {
  pointer-events: auto;
}

header nav p {
  width: 100%;
  text-align: center;
  margin-bottom: 8vh;
  opacity: 0;
  transition: ease-out .5s;
  transition-delay: 0s;
  position: relative;
  right: -20px;
}

header.active nav p {
  opacity: 1;
  right: 0;
  transition-delay: .5s;
}

header nav p a {
  display: inline-block;
  width: 100px;
  transition: ease-out .5s;
}

header nav ul {
  margin: auto;
  margin-bottom: 3vh;
  line-height: 1.6;
  text-align: center;
}

header nav ul li {
  display: inline-block;
  vertical-align: top;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  text-align: left;
  font-weight: bold;
  margin: 0 0;
  opacity: 0;
  transition: ease-out .5s;
  transition-delay: 0s;
  font-size: 16px;
  letter-spacing: 0.2em;
}

header.active nav ul li {
  margin: 0 20px;
  opacity: 1;
  transition-delay: .5s;
}

header nav ul li a {
  transition: ease-out 0.5s;
  padding-top: 50px;
  position: relative;
  display: inline-block;
}

header nav ul>li>a:before {
  content: '';
  height: 0;
  width: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #000;
  transition: ease-out .5s;
  transition-delay: .5s;
}

header.active nav ul li a:before {
  height: 25px;
  transition-delay: 1s;
}

header nav .opacity {
  opacity: 0.3;
  transition: ease-out .5s;
}

header nav div {
  text-align: center;
  position: absolute;
  height: 100%;
  padding: 5vh 0 0;
  opacity: 0;
  transition: linear 1s;
  transition-delay: 0s;
  background-image: url(../img/bg_ichimatsu.gif);
  width: 100%;
  left: 100%;
}

header.active nav div {
  opacity: 1;
  transition-delay: 0s;
  left: 0;
}

header nav div span {
  /* display: none; */
  width: 100%;
  text-align: center;
  position: fixed;
  left: 0;
  display: flex;
  justify-content: center;
}

header nav div img {
  width: 50px;
  height: 50px;
  margin: 0 30px 10px;
  transition: ease-out .5s;
  transition-delay: 0s;
  opacity: 0;
  position: relative;
  left: 20px;
}

header nav div b {
  display: block;
}

header.active nav div img {
  opacity: 1;
  transition-delay: .5s;
  left: 0;
}

header dl {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  padding: 10px;
  line-height: 1.8;
  z-index: 5;
  transition: ease-out 1s;
}

header.active dl {
  opacity: 0;
  pointer-events: none;
}

header dl dd {
  font-size: 11px;
  position: relative;
  padding-left: 5px;
  text-align: left;
}

header dl dd a {
  display: inline-block;
}

header dl dd a:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 0;
  bottom: 2px;
  left: 0;
  margin: auto;
  display: none;
}

.ja header dl dd:first-of-type a:before {
  display: block;
}

/*220624*/
header.active nav ul li ol li {
  display: flex;
  margin: 0 10px 0 0;
  font-size: 13px;
}

.kuranoma_banner a {
  width: 400px;
  margin: 0 auto 6vh;
  display: block;
}

/*=======================================================================
   ##footer
=======================================================================*/
footer {
  background-color: #000;
  padding: 20px;
  text-align: center;
  color: #fff;
}

footer a {
  color: #fff;
}

#totop {
  display: inline-block;
  position: relative;
}

#totop:after {
  content: '';
  width: 1px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  transition: ease-out .5s;
}

#totop span {
  display: block;
  width: 100px;
}

#totop span:before,
#totop span:after {
  content: '';
  width: 1px;
  height: 0;
  background-color: #fff;
  position: absolute;
  bottom: -11px;
  left: 46px;
  transform: rotate(40deg);
  display: block;
  transition: ease-out .5s;
  transition-delay: 0s;
}

#totop span:after {
  left: 54px;
  transform: rotate(-40deg);
}

footer div {
  padding-top: 150px;
}

footer div p {
  margin-bottom: 30px;
}

footer div p a img {
  width: 150px;
}

footer nav p a img {
  width: 50px;
}

footer div nav {
  margin-bottom: 30px;
}

footer div nav ul {
  margin-bottom: 10px;
  position: relative;
}

footer div nav ul li {
  display: inline-block;
  vertical-align: middle;
}

footer div nav ul li a {
  padding: 0 20px;
  display: block;
  position: relative;
}

footer div nav ul li a:before {
  content: '';
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transition: ease-out .5s;
  display: block;
}

footer div nav ul li a:after {
  content: '';
  width: 1px;
  height: 80%;
  border-right: 1px dotted #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

footer div nav ul li:nth-last-of-type(1) a:after,
footer div nav ul li:last-of-type a:after {
  border-right: none;
}

footer div nav ul li:last-of-type {
  /*position: absolute;*/
  display: none;
}

/*footer div nav ul li:last-of-type a {
	padding: 0;
	display: inline;
	margin-right: 5px;
	transition: ease-out .5s;
	opacity: 1;
}*/
footer div nav ul li:last-of-type a:before {
  display: none;
}

footer div nav ul li a img {
  width: 45px;
}

footer>span,
footer>span a {
  color: #969699;
}

/*=======================================================================
   ##top
=======================================================================*/
.main_title {
  color: #fff;
  font-size: 26px;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90%;
  font-weight: 100;
  position: relative;
  z-index: 2;
}

.main_title.on {
  opacity: 1;
  top: 0;
  font-size: 26px;
}

.main_title img {
  opacity: 0;
  width: auto;
}

.main_title span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 400px;
  width: 215px;
}

.main_title span b {
  display: block;
  opacity: 0;
  position: relative;
  top: 20px;
  background-image: url(../img/top_copy.png);
  background-repeat: no-repeat;
  width: 30px;
  margin: 0 20px;
  z-index: 2;
  background-size: auto 100%;
}

.main_title span b.t1 {
  transition: ease-out 1.5s;
  background-position: -137px 0;
}

.main_title span b.t2 {
  transition: ease-out 1.5s;
  transition-delay: .8s;
  background-position: -92px 0;
}

.main_title span b.t3 {
  transition: ease-out 1.5s;
  transition-delay: 1.6s;
  background-position: -46px 0;
}

.main_title span b.t4 {
  transition: ease-out 1.5s;
  transition-delay: 2.4s;
  background-position: 0 0;
}

.main_title.on span b {
  opacity: 1;
  font-size: 26px;
  top: 0;
}

.title {
  font-size: 26px;
}

.title span {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.top_main {
  width: 100%;
  height: calc(100vh - 50px);
  position: relative;
  min-height: 450px;
}

.main_slider {
  position: fixed;
  width: 100%;
  height: calc(100vh - 50px);
  z-index: -1;
  min-height: 450px;
}

.main_slider .slick-list,
.main_slider .slick-track {
  height: 100%;
}

.main_slider .slick-track {
  transform: none !important;
}

.main_slider .slick-arrow {
  display: none !important;
}

.main_img {
  content: '';
  width: calc(100% - 100px);
  height: 100%;
  background-image: url(../img/top1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 0;
  background-attachment: fixed;
  position: fixed;
  z-index: 1;
  transition: 0.1s;
  transform: none !important;
}

@media screen and (max-width:1500px) {
  .main_img {
    background-attachment: local;
  }
}

.main_img.s {
  background-image: url(../img/top2a.jpg);
}

.main_img.a {
  background-image: url(../img/top1a.jpg);
}

.main_img.b {
  background-image: url(../img/top1b.jpg);
}

.main_img.c {
  background-image: url(../img/top1c.jpg);
}

.main_img.d {
  background-image: url(../img/top1d.jpg);
}

.main_img.e {
  background-image: url(../img/top1e.jpg);
}

.top_main>span {
  display: block;
  width: 125px;
  position: absolute;
  bottom: 50px;
  left: 5%;
}

.top_inner {
  background-color: #f5f5f5;
}

.scroll_btn {
  width: 20px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 100px;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  cursor: pointer;
}

.scroll_btn:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background-color: #fff;
  margin: 3px auto;
  display: block;
  animation: scrl 1.5s ease-in-out infinite alternate;
}

@keyframes scrl {
  frome {
    margin: 3px auto;
  }

  to {
    margin: 26px auto;
  }
}

.news_area {
  width: 100%;
  background-color: #000;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

.news_area .news_slider {
  width: 85%;
  padding: 0 5%;
  position: relative;
}

.news_area .news_slider:before {
  content: '';
  width: 1px;
  height: 70%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  border-left: 1px dotted #fff;
}

.news_area .news_slider .news_slider_inner .slick-arrow {
  display: none !important;
}

.news_area .news_slider .news_slider_inner div {
  width: 100%;
}

.news_area .news_slider .news_slider_inner div a {
  color: #fff;
  width: 100%;
  display: block;
}

.news_area .news_slider .news_slider_inner div a span {
  display: inline-block;
  vertical-align: middle;
  width: 10%;
  padding: 5px 0;
}

.news_area .news_slider .news_slider_inner div a span:last-of-type {
  width: 87%;
  padding-left: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.news_area .news_btn {
  color: #fff;
  width: 15%;
  text-align: center;
  display: block;
  padding: 15px 0;
  position: relative;
}

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

.top_area1>div {
  width: 100%;
  color: #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
  opacity: 0;
  transition: ease-out 1s;
  background-color: #821108;
  min-height: 580px;
  transform: scale(0.98);
}

.top_area1>div.in {
  opacity: 1;
  transform: scale(1);
}

.top_area1>div:before {
  content: '';
  background-image: url(../img/top2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: ease-out 1s;
  transition-delay: 0.1s;
  opacity: 1;
}

.top_area1>article {
  z-index: 2;
  position: relative;
}

.top_area1>article>div {
  position: absolute;
  right: 8%;
  top: -400px;
  width: 490px;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.3em;
}

.top_area1>article p {
  font-size: 18px;
}

.top_area1>article>span {
  z-index: 2;
  margin: 0 auto;
  display: block;
}

.top_area2 {
  width: 100%;
  position: relative;
  padding: 50px 0 100px;
}

.top_area2:before {
  content: '';
  width: 90%;
  height: 75%;
  background-image: url(../img/bg_ichimatsu.gif);
  position: absolute;
  top: 0;
  right: 0;
}

.top_area2>div.in {
  opacity: 1;
  transform: scale(1);
}

.top_area2>article {
  z-index: 2;
  position: relative;
  width: 80%;
  max-width: 1200px;
  margin: auto;
  padding: 80px 0 280px;
}

.top_area2>article>div {
  line-height: 2;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  width: 40%;
  display: inline-block;
  vertical-align: top;
  position: relative;
  height: 300px;
}

.top_area2>article>div p {
  font-size: 18px;
  margin-right: 20px;
}

.top_area2>article>span {
  display: inline-block;
  width: 50%;
}

.top_area2>article>span img {
  position: absolute;
}

.top_area2>article>span img:first-of-type {
  width: 430px;
  top: 0;
  right: 0;
}

.top_area2>article>span img:last-of-type {
  width: 210px;
  bottom: 0;
  right: 300px;
}

.top_area2>p a.btn {
  margin: 50px auto 0;
  display: block;
}

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

.top_area3 {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  position: relative;
  padding: 10% 0;
  margin: auto;
}

@media screen and (max-width:1230px) {
  .top_area3 {
    width: 100%;
  }
}

.top_area3 article {
  line-height: 2;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  width: 50%;
  padding: 0 0 0 5%;
}

.top_area3 article p {
  font-size: 18px;
  margin-right: 20px;
}

.top_menu_slide {
  width: 50%;
}

.top_menu_slide .slide_inner {}

.top_menu_slide .slide_inner div {}

.top_menu_slide .slide_inner div img {}

.top_area3 a.btn {
  margin: 5% auto;
  display: block;
}

.shop_title {
  font-size: 26px;
  text-align: center;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  color: #fff;
  background-color: #000;
  padding: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  height: 150px;
}

.shop_area ul {
  display: flex;
  flex-wrap: nowrap;
}

.shop_area ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.shop_area ul li:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: ease-out 0.3s;
}

.shop_area ul li:first-of-type:before {
  background-image: url(../img/shop_bg1.jpg);
}

.shop_area ul li:last-of-type:before {
  background-image: url(../img/shop_bg2.jpg);
}

.shop_area ul li p {
  color: #fff;
  text-align: center;
  font-size: 14px;
  position: relative;
  line-height: 1.5;
}

.shop_area ul li p b {
  font-size: 26px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.shop_area ul li p span {
  font-size: 12px;
  display: block;
}

/*=======================================================================
   ##shop
=======================================================================*/
.shop_box {}

.page_title {
  position: relative;
  width: 100%;
  padding: 10% 0 0;
  margin-bottom: 100px;
  min-height: 150px;
}

.page_title:before {
  content: '';
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.page_title a {
  width: 40px;
  display: block;
  position: absolute;
  z-index: 2;
  top: 220px;
  transition: 0s;
}

.page_title a.fixed {
  position: fixed;
  top: 20px;
}

.page_title .headline {
  display: block;
  font-size: 18px;
  width: 2em;
  height: 180px;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  font-weight: bold;
  text-align: center;
  background-image: url(../img/page_title_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  letter-spacing: .1em;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  line-height: 2;
}

.page_title p {
  text-align: center;
  font-size: 26px;
  margin-top: 150px;
  letter-spacing: .2em;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.page_title_slider {
  width: 100%;
  max-width: 1200px;
  margin: 200px auto 100px 0;
}

.page_title_slider div {}

.page_title_slider div img {}

.shop .page_title:before {
  background-image: url(../img/shop_title_bg.jpg);
}

.shop_list {
  width: 980px;
  margin: auto;
  padding-left: 20px;
}

.shop_list .shop_category {
  font-size: 26px;
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.shop_list ul {
  margin-bottom: 100px;
}

.shop_list ul li {
  padding: 30px 0;
  border-bottom: 1px dotted #ddd;
  position: relative;
}

.shop_list ul li .shop_name {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  /*20201104*/
  width: max-content;
  position: relative;
}

/*20201104*/
.gotoeat_lbl::after {
  content: '';
  margin-left: 10px;
  width: 120px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/shop_gotoeat.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
}

.shop_list ul li .shop_name a {
  position: relative;
  display: inline-block;
}

.shop_list ul li .shop_name a:before {
  content: '';
  width: 0;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: -3px;
  left: 0;
  display: inline-block;
  transition: ease-out .5s;
}

.shop_list ul li .shop_name a:after {
  content: '';
  margin-left: 10px;
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/ico_window.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shop_list ul li>span {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 30px 0 0;
  display: inline-block;
}

.shop_list ul li>span a {
  display: inline-block;
}

.shop_list ul li>a {
  width: 170px;
  color: #fff;
  background-color: #000;
  margin-left: auto;
  display: block;
  text-align: center;
  padding: 10px 0;
  border-radius: 5px;
  letter-spacing: 0.5em;
  margin-top: -40px;
}

.shop_list ul li>a:nth-of-type(2) {
  position: absolute;
  right: 0;
  bottom: 80px;
}

.shop_list ul li>a:nth-of-type(2):before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: ease-out .5s;
}

.shop_list ul li>a>span:before {
  content: '';
  width: 2em;
  height: 1.5em;
  background-image: url(../img/ico_map.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  vertical-align: middle;
  transition: ease-out .3s;
  margin-top: -5px;
  margin-right: 5px;
}

.shop_list ul li>dl {
  font-size: 0;
  margin-bottom: 5px;
}

.shop_list ul li>dl dt {
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  vertical-align: top;
  width: 5em;
}

.shop_list ul li>dl dd {
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 5em);
}

/*=======================================================================
   ##menu
=======================================================================*/
.menu .page_title:before {
  background-image: url(../img/menu_title_bg.jpg);
}

.menu_list {
  width: 980px;
  margin: auto;
}

.menu_title {
  font-size: 26px;
  margin-bottom: 10px;
}

.menu_list>p {
  margin-bottom: 30px;
}

.menu_list ul {
  font-size: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.menu_list ul>li {
  display: flex;
  flex-wrap: wrap;
  width: 49.5%;
  margin-right: 1%;
  margin-bottom: 30px;
}

.menu_list ul>li:nth-of-type(even) {
  margin-right: 0;
}

.menu_name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 5px;
  width: 100%;
}

.menu_name span {
  font-size: 14px;
  display: block;
}

.menu_list ul>li p {
  font-size: 14px;
  margin-bottom: 10px;
  width: 100%;
  line-height: 1.5;
}

.menu_list ul li.hitsumabushi {
  padding: 30px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.menu_list ul li.hitsumabushi:after {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 1020px;
  height: 100%;
  background-image: url(../img/bg_pattern.png);
  z-index: -1;
}

.menu_list ul li.hitsumabushi>div {
  width: 49.5%;
}

.menu_list ul li.hitsumabushi section p {
  font-size: 18px;
  padding: 50px 0;
  font-weight: bold;
}

.menu_list ul li.hitsumabushi section article {
  font-size: 0;
}

.menu_list ul li.hitsumabushi section article div {
  display: inline-block;
  vertical-align: top;
  width: 53%;
  margin-right: 30px;
  font-size: 18px;
}

.menu_list ul li.hitsumabushi section article div h4 {
  margin-bottom: 5px;
}

.menu_list ul li.hitsumabushi section article div ol {
  padding-left: 50px;
}

.menu_list ul li.hitsumabushi section article div ol li {
  margin-bottom: 10px;
  text-indent: -2em;
  padding-right: 2em;
}

.menu_list ul li.hitsumabushi section article p {
  display: inline-block;
  vertical-align: top;
  width: 30%;
  padding: 0;
}

.menu_list>span {
  display: block;
  text-align: right;
}

/*=======================================================================
   ##about
=======================================================================*/
.about .page_title:before {
  background-image: url(../img/about_title_bg.jpg);
}

.about_box1 {
  width: 100%;
  position: relative;
  max-height: 570px;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 100px;
}

/* .about_box1.on {
	width: 100%;
	opacity: 1;
} */
.about_box1:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: ease-out 1s;
  transition-delay: 0.1s;
  opacity: 1;
  z-index: 2;
}

/* .about_box1.on:before {
	width: 100%;
	opacity: 1;
} */
.about_box1.bg1:before {
  background-image: url(../img/about1.jpg);
}

.about_box1.bg2:before {
  background-image: url(../img/about4.jpg);
}

.about_box1:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #333;
  opacity: 0;
  transition: ease-out 1s;
  z-index: 1;
}

.about_box1.on:after {
  width: 100%;
  opacity: 1;
}

.about_box1 div {
  position: relative;
  z-index: 3;
  padding: 85px 100px;
  line-height: 2;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  color: #fff;
  opacity: 1;
  max-height: 570px;
  height: 28vw;
  /* transition: ease-out 1s;
	transition-delay: 1.3s; */
}

/* .about_box1.on div {
	opacity: 1;
} */
.about_box1 div p {
  font-size: 18px;
  margin-right: 20px;
  /* transition-delay: 1.5s; */
}

.about_box2 {
  max-width: 980px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

.about_box2 div {
  width: 49%;
  margin-right: 5%;
  line-height: 2;
  letter-spacing: 0.3em;
}

.about_box2>p+div {
  margin-right: 0;
  margin-left: 5%;
}

.about_box2 div p {
  font-size: 18px;
}

.about_box2>p {
  width: 46%;
}

.about_box2>a.btn {
  margin-left: auto;
  margin-top: 50px;
}

/*=======================================================================
   ##news
=======================================================================*/
.news .page_title:before {
  background-image: url(../img/news_title_bg.jpg);
}

.news_list {
  width: 980px;
  margin: 100px auto 50px;
}

.news_list div {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  position: relative;
  margin-bottom: 50px;
  padding: 15px 5px;
  z-index: 6;
  height: 62px;
}

.news_list div h2 {
  font-size: 18px;
}

.news_list div dl {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  height: 25px;
  cursor: pointer;
}

.news_list div dl dt p {
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}

.news_list div dl dt p span {
  display: block;
  width: 30px;
  height: 1px;
  background-color: #000;
  position: relative;
  top: -1px;
}

.news_list div dl dt p span:before,
.news_list div dl dt p span:after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  position: absolute;
  top: -12px;
  bottom: 0;
  margin: auto;
  background-color: #000;
}

.news_list div dl dt p span:after {
  top: 12px;
}

.news_list div dl dd {
  position: absolute;
  margin-top: 15px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: ease-out .5s;
}

.news_list div dl dt.active+dd {
  opacity: 1;
  pointer-events: auto;
}

.news_list div dl dd ul li a {
  width: 100%;
  padding: 10px 10px;
  display: block;
  transition: ease-out .5s;
}

.news_list>ul li {
  position: relative;
  border-bottom: 1px dotted #a8a8a8;
  display: table;
  padding: 15px 5px;
  width: 100%;
  transition: ease-out .5s;
}

.news_list>ul li span {
  font-size: 14px;
  display: table-cell;
  vertical-align: top;
  width: 120px;
}

.news_list>ul li p {
  font-size: 18px;
  display: table-cell;
  vertical-align: top;
}

.news_wrap {
  width: 980px;
  margin: 0 auto 50px;
}

.news_wrap:after {
  content: '';
  clear: both;
  display: block;
}

.news_wrap article {
  float: left;
  width: 650px;
}

.news_wrap article .news_title {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  position: relative;
  margin-bottom: 50px;
  padding: 15px 5px;
  z-index: 6;
  height: 62px;
  display: table;
  width: 100%;
}

.news_wrap article .news_title span {
  display: table-cell;
  vertical-align: top;
  width: 100px;
  padding: 3px 0;
}

.news_wrap article .news_title b {
  display: table-cell;
  vertical-align: top;
  font-size: 18px;
}

.news_wrap article div {
  line-height: 2;
  padding: 0 5px 50px;
  border-bottom: 1px solid #ddd;
  word-wrap: break-word;
}

.news_wrap article div img {
  margin-bottom: 15px;
  max-width: 100%;
}

.news_wrap .news_side {
  float: right;
  width: 280px;
}

.news_wrap .news_side p {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  position: relative;
  padding: 15px 5px;
  z-index: 6;
  height: 62px;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 18px;
}

.news_wrap .news_side dl dt {
  padding: 15px 5px;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  position: relative;
}

.news_wrap .news_side dl dt:before,
.news_wrap .news_side dl dt:after {
  content: '';
  width: 15px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  opacity: 1;
  transition: ease-out .5s;
}

.news_wrap .news_side dl dt:after {
  transform: rotate(90deg);
}

.news_wrap .news_side dl dt.current:after,
.news_wrap .news_side dl dt.active:after {
  opacity: 0;
}

.news_wrap .news_side dl dd {
  display: none;
}

.news_wrap .news_side dl dd ul li a {
  display: block;
  width: 100%;
  padding: 10px 5px;
  border-bottom: 1px solid #ddd;
  transition: ease-out .5s;
}

.news_wrap .news_side dl dd a.current {
  background-color: #e8e8e8;
  text-decoration: none;
}

.pager {
  width: 980px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.pager ol {
  font-size: 14px;
  text-align: center;
}

.pager ol li {
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
}

.pager ol li a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 2;
  border: 1px solid #000;
  transition: ease-out .5s;
  color: #000;
}

.pager ol li a.current {
  color: #fff;
  background-color: #000;
}

.pager ul {
  width: 650px;
  margin-right: auto;
  position: relative;
}

.pager ul:after {
  content: '';
  clear: both;
  display: block;
}

.pager ul .prev {
  float: left;
}

.pager ul .prev a {
  padding: 15px 0;
  display: block;
}

.pager ul .prev a:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  transform: rotate(-45deg);
  margin-right: 10px;
  position: relative;
  transition: ease-out .5s;
  left: 0;
}

.pager ul .back a.btn {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  width: 200px;
}

.pager ul .next {
  float: right;
}

.pager ul .next a {
  padding: 15px 0;
  display: block;
}

.pager ul .next a:after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  margin-left: 10px;
  position: relative;
  transition: ease-out .5s;
  right: 0;
}

.news_kimulist a {
  display: block;
  text-decoration: none;
  line-height: 130%;
}

.pager .pages {
  display: none;
}

.wp-pagenavi {
  clear: both;
  font-size: 14px;
  text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 2;
  border: 1px solid #000;
  transition: ease-out .5s;
  color: #000;
  font-size: 14px;
  margin: 5px;
  vertical-align: top;
  padding: 0px;
}

.wp-pagenavi span.current {
  color: #fff;
  background-color: #000;
  font-size: 14px;
  vertical-align: top;
  text-decoration: none;
}

.news_wrap .news_side dl dd {
  display: none;
}

.news_wrap .news_side dl dd a {
  display: block;
  width: 100%;
  padding: 10px 5px;
  border-bottom: 1px solid #ddd;
  transition: ease-out .5s;
}

.news_wrap .news_side dl dd a.current {
  background-color: #e8e8e8;
  text-decoration: none;
}

/*=======================================================================
   ##ie hack
=======================================================================*/
_:-ms-input-placeholder, :root .top_area1>article>div {
  width: 520px;
}

_:-ms-input-placeholder, :root header nav ul {
  /* width: 385px; */
}

_:-ms-input-placeholder, :root .about_box1 div {
  padding: 74px 100px;
}

_:-ms-input-placeholder, :root .top_area2>article>div {
  height: 320px;
}

/*=======================================================================
   ##firefox hack
=======================================================================*/
@-moz-document url-prefix() {
  .news_list div dl dt p span:after {
    top: 7px;
  }
}

/*=======================================================================
   ##safari hack
=======================================================================*/
_::-webkit-full-page-media, _:future, :root header nav ul {
  /* width: 385px; */
}

/*=======================================================================
   ##tw
=======================================================================*/
.tw header nav div span {
  display: block;
}

.tw header dl dd:last-of-type a:before {
  display: block;
}

.tw footer div nav ul li:last-of-type {
  display: inline-block;
  /*height: 30px;*/
}

.wrap.tw {
  font-family: "PMingLiU", "Microsoft JhengHei", "微軟正黑體", "sans-serif" !important;
}

.tw .main_title {
  font-weight: normal;
}

.tw .main_title span b {
  background-image: url(../img/top_copy_tw.png);
  width: 27px;
  margin: 0 15px;
}

.tw .menu_list ul li.hitsumabushi section article div ol {
  padding-left: 23px;
}

.tw .menu_list ul li.hitsumabushi section article div ol li {
  text-indent: -.8em;
}

.tw .menu_list ul>li p {
  min-height: auto;
}

.tw .main_title span {
  width: 180px;
}

.tw .main_title span b.t1 {
  transition: ease-out 1.5s;
  background-position: -103px 0;
}

.tw .main_title span b.t2 {
  transition: ease-out 1.5s;
  transition-delay: .8s;
  background-position: -67px 0;
}

.tw .main_title span b.t3 {
  transition: ease-out 1.5s;
  transition-delay: 1.6s;
  background-position: -31px 0;
}

.tw .main_title span b.t4 {
  transition: ease-out 1.5s;
  transition-delay: 2.4s;
  background-position: 5px 0;
}

.tw .top_area3 article {
  height: 468px;
}

/*20190807追記*/
.youtubewrap {
  position: relative;
  width: 60%;
  padding-top: 33%;
  margin: 0 auto 10%;
}

.youtubewrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  filter: brightness(0.8);
  transition: 0.3s;
}

.youtubewrap:hover iframe {
  transition: 0.3s;
  filter: brightness(1);
}

.rela {
  position: relative;
}

.abso {
  position: absolute;
}

.youtube1 {
  width: 4.4%;
  max-width: 42px;
  display: inline-block;
  position: relative;
  top: 28px;
  margin: 0 20px 0 0;
}

.youtube2 {
  width: 4.4%;
  max-width: 42px;
  display: inline-block;
  position: relative;
  top: 28px;
  margin: 0 20px 0 0;
}

.yout span {
  position: relative;
  top: -8px;
  font-size: 10px;
}

.yout {
  text-align: center;
}

/* IE10以降 */
/* online */
.online_list {
  width: 980px;
  margin: auto;
}

.online_list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 30px 0 100px;
}

.online_list ul h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin: 15px 0;
  width: 100%;
}

.online_list ul li {
  padding: 15px;
  border: solid 1px #ddd;
  margin: 5px;
  width: 32%;
  box-shadow: 1px 1px 1px #ddd;
}

.online_list ul li p {
  background: black;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  margin: 20px 0px;
}

.online_list ul li p a {
  color: #fff;
}

.online_list .menu_name span {
  font-size: 18px;
  display: block;
  color: #AB0000;
  text-align: right;
}

.online_list .menu_name span span {
  font-size: 12px;
  display: inline;
  color: #AB0000;
  text-align: right;
  margin-left: 5px;
}

.online_list .menu_title {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
}

/* 210528 */
.top_area3 .btn_box {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  max-width: 700px;
  width: 100%;
  margin: 5% auto;
}

.top_area3 .btn_box a {
  margin-top: 5%;
}

.top_area3 .btn_box a.delivery {
  max-width: 330px;
}

.top_area3 .btn_box a.btn:hover:before {
  width: 70px;
  right: 10px;
}

.top_area3 .btn_box a.btn:hover:after {
  right: 13px;
}

.top_menu_slide .slide_inner {
  position: relative;
}

.top_menu_slide .slide_inner::after {
  content: "";
  background: url(../img/taxi_delivery.png) no-repeat center/cover;
  width: 145px;
  height: 145px;
  position: absolute;
  top: -40px;
  right: -50px;
}

.shop_list.delivery a.btn.delivery {
  margin: 50px auto;
  display: block;
  max-width: 330px;
}

/*追従バナー*/
aside.side_banner.fixed {
  position: fixed;
  top: 48% !important;
  right: 70px;
  z-index: 3;
  width: 300px;
}

aside.side_banner.fixed.tw {
  top: 85% !important;
}

aside.side_banner.fixed ul {
  right: 0;
  position: relative;
  transition: .3s;
}

.ba {
  display: block;
  height: auto;
  margin-bottom: 10px;
  position: relative;
  filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, .1));
  transition: .3s;
  right: 0;
}

.ba_gotoeat img {
  width: 75%;
}

.ba_gotoeat {
  display: block;
  text-align: right;
  /*padding-right: 5px;*/
  padding-bottom: 10px;
}

.ba_onlineshop img {
  margin-top: 275px;
}

/* えどがわロゴ */
.edogawa_delivery_logo {
  width: 10%;
  margin-right: 20px;
  vertical-align: middle;
}

/* フッターボタン */
.footer_btn {
  width: 28%;
  margin: 0 auto 20px;
  overflow: hidden;
}

.footer_btn li {
  float: left;
  width: 48%;
  text-align: center;
  margin: 0 1%;
}

.footer_btn a {
  color: #fff;
  font-weight: normal;
  font-size: 14px;
  padding: 5px 0;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
}

span.fnakanabilogo {
  max-width: 120px;
  margin: 0 auto;
  display: block;
}

.kuranoma {
  background-color: #000000;
  color: #fff;
}

.kura_mv {
  /* background-image: url(../img/kuranoma/mv.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 65vh;
    background-position: center;
    width: 100%;
    position: relative; */
  position: relative;
}

.kura_mv::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1
}

.kura_mv .kura_inner {}

.kura_mv_slider li img {
  /* height: 70vh; */
}

.kura_mv_float {
  position: absolute;
  margin: auto;
  z-index: 2;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /* Safari用 */
  transform: translate(-50%, -50%);
}

.kura_mv_logo {
  max-width: 370px;
  margin-bottom: 25px;
}

.kura_mv_float_txt {
  font-size: 22px;
  color: #fff;
  line-height: 1.72em;
  letter-spacing: 0.11em;
  font-weight: bold;
}

.kura_anchor_wrap .kura_inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.kura_inner {
  max-width: 1080px;
  margin: auto;
}

.kura_anchor {
  color: #fff;
  font-size: 18px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0;
}

.kura_anchor a {}

.kura_sec_ttl {
  font-size: 24px;
  position: relative;
}

.kura_sec_ttl::after {
  content: '';
  background-color: #fff;
  width: 75px;
  height: 1px;
  position: absolute;
}

.fill_btn {
  position: relative;
  z-index: 0;
  text-align: center;
  font-weight: bold;
  padding: 20px 0;
  overflow: hidden;
  display: inline-block;
}

.fill_btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  display: block;
  z-index: -1;
  transition: .3s;
}

.fill_btn:hover:before {
  width: 100%;
}

.kura_btn {
  border: solid 1px #fff;
  font-size: 18px;
  letter-spacing: 0.18em;
  align-items: center;
  justify-content: center;
  height: 60px;
  margin: auto;
  text-align: left;
  max-width: 270px !important;
}

.kura_btn:hover {
  text-decoration: none;
}

.kura_btn::before {
  background-color: #fff;
}

/*concept*/
.kura_concept_sec {
  padding: 100px 0 130px;
  background-image: url(../img/kuranoma/concept.png);
  background-size: cover;
  background-position: top -1px right -300px;
  /* background-position: top -1px left -1px; */
  position: relative;
}

.kura_concept_sec::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.56);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.kura_concept_sec .kura_sec_ttl {
  display: inline-block;
  margin-bottom: 25px;
}

.kura_concept_sec .kura_sec_ttl::after {
  top: 0;
  bottom: 0;
  margin: auto;
  right: -95px;
}

.kura_concept_txt {
  line-height: 2.7em;
  font-size: 18px;
  position: relative;
}

/*dish*/
.kura_dish_sec {
  padding: 70px 0;
}

.kura_dish_sec .kura_sec_ttl {
  text-align: center;
  margin-bottom: 70px;
}

.kura_dish_sec .kura_sec_ttl::after {
  right: 0;
  left: 0;
  margin: auto;
  bottom: -20px;
}

.kura_dish_slider_wrap {
  margin-bottom: 55px;
}

.kura_dish_slider {
  margin-bottom: 25px;
}

.kura_dish_slider li {
  height: 676px;
  overflow: hidden;
}

.kura_dish_slider li img {}

.kura_dish_thumb {
  display: flex;
  flex-wrap: nowrap;
}

.kura_dish_thumb li {
  position: relative;
  cursor: pointer;
}

.kura_dish_thumb li::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: .3s opacity linear;
}

.kura_dish_thumb li.thumbnail-current::after {
  opacity: 0;
}

.kura_dish_thumb li img {
  width: 90%;
}

.kura_dish_slider .slick-prev, .kura_dish_slider .slick-next {
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kura_dish_slider .slick-prev:before, .kura_dish_slider .slick-next:before {
  width: 15px;
  height: 15px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: '';
  position: absolute;
}

.kura_dish_slider .slick-prev:before {
  transform: rotate(-135deg);
  right: 18px;
}

.kura_dish_slider .slick-next:before {
  left: 18px;
}

.kura_dish_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.kura_dish_caption {
  margin-bottom: 65px;
  text-align: right;
}

.kura_dish_contents {
  width: 49%;
  border: solid 1px #fff;
  padding: 35px 30px;
}

.kura_dish_ttl {
  font-size: 18px;
  line-height: 2.2em;
  margin-bottom: 25px;
}

.kura_dish_detail {}

.kura_dish_detail li {
  display: flex;
  margin-bottom: 15px;
}

.kura_dish_detail li span {
  width: 100px;
}

.kura_dish_detail li p {
  width: calc(100% - 100px);
}

/*shop*/
.kura_shop_sec {
  padding: 40px 0 70px;
  overflow: hidden;
  margin-bottom: 100px;
  background-image: url(../img/kuranoma/shop.png);
  background-size: cover;
  background-position: center left -230px;
  position: relative;
}

.kura_shop_sec::before {
  content: '';
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: #000000;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, #000000 65%, #000000 100%);
  background: -webkit-gradient(linear, left center, right center, from(), color-stop(65%, #000000), to(#000000));
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, #000000 65%, #000000 100%);
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, #000000 65%, #000000 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #000000 65%, #000000 100%);
}

.kura_shop_info {
  float: right;
  width: 45%;
  position: relative;
}

.kura_shop_sec .kura_sec_ttl {
  margin-bottom: 40px;
}

.kura_shop_sec .kura_sec_ttl::after {
  bottom: -15px;
  left: 0;
}

.kura_shop_txt {}

.shop_area_btn {
  width: 100%;
display: flex;
position: relative;
justify-content: center;
}

.shop_area_btn a {
  color: #fff;
border: solid 1px #fff;
border-radius: 5px;
padding: 10px 20px;
min-width: 162px;
text-align: center;
margin: 0 1%;
transition: .3s;
text-decoration: none;
}

.shop_area_btn a:hover {
  background-color: #fff;
  color: #000;
}

.shop_kuranoma {
  text-decoration: underline;
}
.shop_list ul li .shop_name a.shop_kuranoma::after {
  display: none;
}

.kura_movie {
  position: relative;
  width: 80%;
  height: 485px;
  margin: auto;
  display: block;
}
