@charset "utf-8";

/*=======================================================================
   ##common
=======================================================================*/
body {
  margin: 0 auto;
  padding: 0;
  font-size: 3.3vw;
  line-height: 1.7;
  position: relative;
  color: #333;
  font-family: 'Times New Roman', Times, 'YuMincho', '游明朝', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
  font-weight: 400;
  text-align: left;
  -webkit-text-size-adjust: 100%;
}

img {
  width: 100%;
}

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

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

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

a.btn {
  color: #fff;
  background-color: #000;
  width: 80%;
  display: block;
  padding: 3% 5%;
  position: relative;
  transition: ease-in-out 0.3s;
  margin: auto;
}

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.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.on {
  visibility: visible;
  opacity: 1;
  top: 0;
}

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

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

main {
  padding-top: 70px;
}

.wrap {
  width: 100%;
  padding: 0;
}

.nosp {
  display: none;
}

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

.logo {
  height: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  z-index: 6;
  transition: ease-out 1s;
}

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

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

.logo img:first-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: 70px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 15;
}

.menu_btn p {
  position: absolute;
  width: 36px;
  height: 36px;
  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: 100%;
  height: 100vh;
  background-color: #fff;
  opacity: 0;
  transition: linear .8s;
  transition-delay: .5s;
  pointer-events: none;
}

header.active nav {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
  padding: 8% 0 50px;
  overflow-y: scroll;
}

header nav p {
  width: 100%;
  text-align: center;
  margin-bottom: 8%;
  opacity: 0;
  transition: ease-out .5s;
  transition-delay: 0s;
  position: relative;
  transform: scale(0.95);
}

header.active nav p {
  opacity: 1;
  transition-delay: 1s;
  transform: scale(1);
}

header nav p a {
  display: inline-block;
  width: 10%;
  max-width: 130px;
  min-width: 85px;
  transition: ease-out .5s;
}

header nav ul {
  width: 100%;
  margin: auto;
  margin-bottom: 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: 3.8vw;
  letter-spacing: 0.2em;
}

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

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 a.opacity {
  opacity: 0.3;
  transition: ease-out .5s;
}

header nav div {
  /* display: none; */
  text-align: center;
  position: relative;
  opacity: 0;
  transition: ease-out .5s;
  transition-delay: 0s;
}

header nav div span {
  display: flex;
  justify-content: center;
}

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

header nav div img {
  width: 45px;
  height: 45px;
  margin: 0 20px 5px;
}

header nav div b {
  display: block;
}

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

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

header dl dt {
  display: none;
}

header dl dd {
  font-size: 3.3vw;
  position: relative;
  padding-left: 5px;
  display: inline-block;
  margin-right: 10px;
}

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: -3px;
  margin: auto;
  display: none;
}

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

@media screen and (max-width:400px) {
  header dl {
    height: 3em;
  }

  header dl dd {
    display: block;
    margin-bottom: 3%;
    width: 5em;
    margin-left: auto;
    text-align: left;
  }
}

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

.kuranoma_banner a {
  width: 90%;
    margin: 0 auto 6%;
    display: block;
        max-width: revert;
}

/*=======================================================================
   ##footer
=======================================================================*/
footer {
  background-color: #000;
  padding: 3%;
  text-align: center;
  color: #fff;
  font-size: 3vw;
}

footer a {
  color: #fff;
}

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

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

footer div {
  padding-top: 100px;
}

footer div p {
  margin-bottom: 5%;
}

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

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

footer div nav ul {
  margin: 0 auto 3%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 94%;
}

footer div nav ul li {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 5px;
  position: relative;
  width: 33%;
}

footer div nav ul li a {
  padding: 0 4.5vw;
  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:last-child a:after {
  content: '';
  width: 1px;
  height: 80%;
  border-right: 1px dotted #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -75%;
  margin: auto;
}

footer div nav ul li:after,
footer div nav ul li:nth-of-type(1):before,
footer div nav ul li:nth-of-type(4):before {
  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-of-type(1):before,
footer div nav ul li:nth-of-type(4):before {
  right: auto;
  left: 0;
}

footer div nav ul li:last-of-type {
  display: none;
  /*width: 100%;
	margin: 3%;*/
}

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

footer div nav ul li:last-of-type a:hover {
  opacity: .7;
}

footer div nav ul li:last-of-type:before,
footer div nav ul li:last-of-type:after {
  display: none;
}

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

/*=======================================================================
   ##top
=======================================================================*/
.main_title {
  color: #fff;
  font-size: 4.3vw;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-weight: 100;
  opacity: 0;
  transition: ease-out 1.5s;
  top: -20px;
  left: 0;
  position: absolute;
  z-index: 2;
}

.main_title.on {
  opacity: 1;
  top: 0;
}

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

.main_title span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 90vw;
  width: 40vw;
}

.main_title span b {
  display: block;
  opacity: 0;
  position: relative;
  top: 20px;
  background-image: url(../img/top_copy.png);
  background-repeat: no-repeat;
  -webkit-background-size: 35vw;
  background-size: 35vw;
  width: 6vw;
  margin: 0 3vw;
  z-index: 2;
}

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

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

.main_title span b.t3 {
  transition: ease-out 1.5s;
  transition-delay: 1.6s;
  background-position: -10vw 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: 4.3vw;
  top: 0;
}

.title {
  font-size: 4.3vw;
}

.title span {
  display: block;
  font-size: 3.3vw;
  line-height: 1.2;
}

.top_main {
  width: 100%;
  height: calc(100% - 5%);
  position: relative;
}

.main_slider,
.main_slider .slick-list,
.main_slider .slick-track {
  height: calc(100vh - 120px);
}

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

.main_img {
  content: '';
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 0;
  position: fixed;
  z-index: -1;
  transition: 0.1s;
}

.main_img.s {
  background-image: url(../img/top2b.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: 23%;
  position: absolute;
  bottom: 5%;
  left: 5%;
}

.top_inner {
  background-color: #fff;
}

.scroll_btn {
  width: 20px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 100px;
  position: absolute;
  bottom: 5%;
  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;
  padding: 5px 0;
}

.news_area .news_slider {
  width: 90%;
  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;
  line-height: 0;
}

.news_area .news_slider .news_slider_inner div a:hover {
  text-decoration: none;
}

.news_area .news_slider .news_slider_inner div a span {
  display: block;
  vertical-align: middle;
  width: 100%;
  line-height: 1.5;
  font-size: 12px;
}

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

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

.news_area .news_btn span {
  display: none;
}

.news_area .news_btn:after {
  content: '';
  width: 80%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.news_area .news_btn:before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10%;
  margin: auto;
}

.top_area1 {
  width: 100%;
  background-color: #fff;
  position: relative;
}

.top_area1>div {
  width: 100%;
  color: #fff;
  padding: 35% 3%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  opacity: 0;
  transition: ease-out 1s;
  background-color: #ccc;
  transform: scale(0.98);
}

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

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

.top_area1 article {
  display: flex;
  flex-wrap: wrap;
}

.top_area1 article div {
  letter-spacing: 0.3em;
  line-height: 1.8;
  z-index: 2;
  position: relative;
  width: 94%;
  order: 1;
  margin: 10% auto;
}

.top_area1 article p {
  font-size: 3.8vw;
  margin-right: 3%;
}

.top_area1 span {
  order: 2;
}

.top_area1 img {
  width: 43%;
  position: relative;
  z-index: 3;
  margin: 10% 3%;
}

.top_area2 {
  width: 100%;
  background-color: #fff;
  position: relative;
}

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

.top_area2 article {
  display: flex;
  flex-wrap: wrap;
}

.top_area2 article div {
  line-height: 2;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  width: 60%;
  z-index: 2;
  position: relative;
  margin: 10% auto 0;
  order: 2;
  height: 70vw;
}

.top_area2 article h2 {}

.top_area2 article p {
  font-size: 3.8vw;
  margin-right: 3%;
}

.top_area2 article span {
  order: 1
}

.top_area2 img {
  width: 43%;
  position: relative;
  z-index: 3;
  margin: 10% 3%;
}

.top_area2>article>span img:first-of-type {
  top: -10%;
}

.top_area2>article>span img:last-of-type {
  top: 10%;
}

.top_area2 a.btn {
  margin: 10% auto 15%;
  display: block;
}

.top_area_bg {
  width: 100%;
  position: relative;
  background-color: #fff;
}

.top_area3 {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  width: 100%;
  background-color: #fff;
  position: relative;
  padding: 10% 0;
}

.top_area3 article {
  line-height: 2;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  width: 100%;
  padding: 0 10%;
  order: 1;
  height: 88vw;
}

.top_area3 article p {
  font-size: 3.3vw;
  margin-right: 3%;
}

.top_menu_slide {
  width: 100%;
  padding-top: 5%;
  order: 2;
}

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

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

.shop_title {
  font-size: 4.3vw;
  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;
  max-height: 144px;
}

.shop_area ul li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 10% 5%;
  position: relative;
  overflow: hidden;
}

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

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

.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);
  background-position: bottom center;
}

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

.shop_area ul li p {
  color: #fff;
  font-size: 3.3vw;
  line-height: 1.5;
  position: relative;
  width: 100%;
  text-align: center;
}

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

.shop_area ul li p span {
  font-size: 3vw;
  display: block;
  vertical-align: middle;
  margin-left: 5px;
  margin-bottom: 2px;
}

/*=======================================================================
   ##shop
=======================================================================*/
.page_title {
  position: relative;
  width: 100%;
  padding: 10% 0 0;
  margin-bottom: 10%;
}

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

.page_title a {
  display: none;
}

.page_title .headline {
  font-size: 3.8vw;
  width: 2em;
  height: 33vw;
  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: 5%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  line-height: 2;
}

.page_title p {
  text-align: center;
  font-size: 4.3vw;
  letter-spacing: .2em;
  font-weight: bold;
  position: relative;
  z-index: 2;
  width: 94%;
  margin: 40% auto 0;
}

.page_title_slider {
  width: 100%;
  max-width: 1200px;
  clear: both;
  margin: 0 0 10%;
}

.shop .page_title {
  padding: 48% 0 5%;
  margin-bottom: 0;
}

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

.shop_list {
  width: 94%;
  margin: auto;
}

.shop_list .shop_category {
  font-size: 4.3vw;
  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: 5% 0;
  border-bottom: 1px dotted #ddd;
  position: relative;
}

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

/*20201104*/
.gotoeat_lbl::after {
  content: '';
  margin-left: 10px;
  width: 100px;
  height: 22px;
  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;
}

.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 p {
  margin-bottom: 5%;
}

.shop_list ul li>span {
  font-size: 3.8vw;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

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

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

.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: 3.8vw;
  font-weight: bold;
  display: inline-block;
  vertical-align: top;
  width: 5em;
}

.shop_list ul li>dl dd {
  font-size: 3.8vw;
  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: 94%;
  margin: auto;
}

.menu_title {
  font-size: 4.3vw;
  margin-bottom: 3%;
}

.menu_list>p {
  margin-bottom: 5%;
}

.menu_list ul {
  font-size: 0;
}

.menu_list ul>li {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin-bottom: 10%;
}

.menu_list>span {
  display: block;
  text-align: right;
  margin-bottom: 5%;
}

.menu_name {
  font-size: 3.8vw;
  font-weight: bold;
  line-height: 2;
}

.menu_name span {
  font-size: 3vw;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3%;
}

.menu_list ul>li p {
  font-size: 3.3vw;
  margin-bottom: 10px;
}

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

.menu_list ul li.hitsumabushi:after {
  content: '';
  position: absolute;
  top: 0;
  left: -3%;
  width: 106%;
  height: 100%;
  background-color: #eee;
  z-index: -1;
}

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

.menu_list ul li.hitsumabushi section p {
  font-size: 3.8vw;
  padding: 5% 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: 100%;
  font-size: 3.8vw;
  margin-bottom: 3%;
}

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

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

.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: 100%;
  padding: 0;
}

/*=======================================================================
   ##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: 15%;
}

/* .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: 100%;
  height: 100%;
  background-color: #333;
  opacity: 1;
  transition: ease-out 1s;
  z-index: 1;
}

/* .about_box1.on:after {
	width: 100%;
	opacity: 1;
} */
.about_box1 div {
  position: relative;
  z-index: 3;
  padding: 10% 3%;
  line-height: 2;
  letter-spacing: 0.3em;
  color: #fff;
  opacity: 1;
  transition: ease-out 1s;
  transition-delay: 1.3s;
}

/* .about_box1.on div {
	opacity: 1;
} */
.about_box1 div p {
  font-size: 3.8vw;
  margin-right: 3%;
  /* transition-delay: 1.5s; */
}

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

.about_box2 div {
  width: 94%;
  line-height: 2;
  letter-spacing: 0.3em;
  margin: 0 auto;
  order: 2;
}

.about_box2 div p {
  font-size: 3.8vw;
}

.about_box2>p {
  width: 100%;
  order: 1;
  margin-bottom: 5%;
}

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

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

.news_list {
  width: 94%;
  margin: 20% auto 10%;
}

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

.news_list div h2 {
  font-size: 3.8vw;
}

.news_list div dl {
  float: right;
  margin: -6vw auto 0;
  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;
  top: 11vw;
  left: 0;
}

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

.news_list div dl dd ul li a {
  width: 50%;
  padding: 5%;
  display: block;
  transition: ease-out .5s;
  float: left;
  text-align: center;
}

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

.news_list>ul li span {
  font-size: 3.3vw;
  width: 100%;
  padding: 3px 0;
  display: block;
}

.news_list>ul li p {
  font-size: 3.8vw;
  width: 100%;
}

.news_wrap {
  width: 94%;
  margin: 0 auto 10%;
}

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

.news_wrap article {
  width: 100%;
  margin-bottom: 10%;
}

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

.news_wrap article .news_title span {
  width: 100%;
  padding: 3px 0;
  display: block;
}

.news_wrap article .news_title b {
  font-size: 3.8vw;
}

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

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

.news_wrap .news_side {
  width: 100%;
}

.news_wrap .news_side p {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  position: relative;
  padding: 3% 5px;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 3.8vw;
}

.news_wrap .news_side dl dt {
  padding: 3% 5px;
  font-size: 3.8vw;
  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: 2% 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: 94%;
  margin: 0 auto 10%;
}

.pager ol {
  font-size: 3.3vw;
  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: 94%;
  margin: auto;
  position: relative;
  padding: 15% 0;
}

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

.pager ul .prev {
  position: absolute;
  top: 0;
  left: 0;
}

.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;
}

.pager ul .next {
  position: absolute;
  top: 0;
  right: 0;
}

.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;
}

/*20190408kimura追加*/
.news_kimulist a {
  display: block;
  text-decoration: none;
}

.pager .pages {
  display: none;
}

.wp-pagenavi {
  clear: both;
  font-size: 3.3vw;
  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: 3.3vw;
  margin: 5px;
  vertical-align: top;
  padding: 0px;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
  color: #fff;
  background-color: #000;
  font-size: 3.3vw;
  vertical-align: top;
  text-decoration: none;
}

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

.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:hover {
  background-color: #e8e8e8;
  text-decoration: none;
}

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

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

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

.tw footer div nav ul li:last-of-type {
  display: block;
}

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

.tw .main_title span b {
  background-image: url(../img/top_copy_tw.png);
}

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

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

.tw .main_title span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 92vw;
  width: 40vw;
}

.tw .main_title span b {
  margin: 0 3vw;
  background-size: 28vw;
}

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

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

.tw .main_title span b.t3 {
  transition: ease-out 1.7s;
  transition-delay: 1.6s;
  background-position: -8vw 0;
}

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

.tw .top_area3 article {
  height: 70vw;
}

/*20190807追記*/
.youtubewrap {
  position: relative;
  width: 80%;
  padding-top: 50%;
  margin: 0 auto 15%;
}

.youtubewrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.rela {
  position: relative;
}

.abso {
  position: absolute;
}

.youtube2 {
  right: 34%;
  bottom: 0;
  width: 8%;
  max-width: 42px;
  position: absolute;
}

.youtube1 {
  right: 34%;
  bottom: 18%;
  width: 8%;
  max-width: 42px;
  position: absolute;
}

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

.yout {
  text-align: center;
}

/* online */
.online_list {
  margin: auto;
}

.online_list ul {
  text-align: center;
}

.online_list ul li {
  padding: 3%;
  margin: 0 0 10px;
  display: inline-block;
  vertical-align: top;
  width: 94%;
  text-align: center;
  border: solid 1px #ccc;
}

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

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

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

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

.online_list .menu_name span {
  font-size: 20px;
  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;
}

/* 210528 */
.top_area3 .btn_box {
  display: block;
  order: 3;
  width: 100%;
  margin-top: 5%;
}

.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: 100px;
  height: 100px;
  position: absolute;
  top: -50px;
  left: 0;
}

.shop_list.delivery a.btn.delivery {
  margin: 30px auto;
  display: block;
}

/*追従バナー*/
aside.side_banner.fixed {
  position: fixed;
  top: 63% !important;
  right: 0;
  z-index: 3;
  width: 55%;
}

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: 90%;*/
}

.ba_gotoeat {
  display: block;
  text-align: right;
  /* padding-right: 5px;*/
  padding-bottom: 10px;
  width: 70%;
  position: relative;
  left: 56px;
  top: 8px;
}

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

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

/* アプリバナー */
.app {
  margin: 6% 0;
}

.app_img {
  width: 85%;
  height: auto;
  margin: auto !important;
}

/* フッターボタン */
.footer_btn {
  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;
  width: 53.2%;
}

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

.kura_mv {
  z-index: 2;
  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: 50vh;
  width: auto;
}

.kura_mv_slider li {
	display: flex !important;
	justify-content: center;
	align-items: center;
}

.kura_mv_float {
  position: absolute;
  bottom: 18px;
  right: 0;
  z-index: 2;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
	/* Safari用 */
  transform: translate(-50%, -50%);
  width: 90%;
}

.kura_mv_logo {
  width: 75%;
  margin-bottom: 20px;
}

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

.kura_anchor_wrap {
  z-index: 2;
    position: relative;
    /* margin-bottom: 20px; */
}

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

.kura_inner {
  margin: auto;
  width: 90%;
}

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

.kura_anchor a {}

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

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

.kura_btn {
	border: solid 1px #fff;
	font-size: 14px;
	letter-spacing: 0.18em;
	align-items: center;
	justify-content: center;
	text-align: left;
}

/*concept*/
.kura_concept_sec {
  padding: 50px 0;
  background-image: url(../img/kuranoma/concept.png);
  background-size: cover;
  background-position: top -1px right -200px;
  /* background-position: top -1px right -125px; */
  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: 10px;
}

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

.kura_concept_txt {
  line-height: 2.7em;
  position: relative;
}

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

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

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

.kura_dish_slider_wrap {
  margin-bottom: 55px;
}

.kura_dish_slider {
  margin-bottom: 25px;
}

.kura_dish_slider li {
  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 {
  margin-bottom: 10px;
}

.kura_dish_caption {
	text-align: center;
	margin-bottom: 45px;
}

.kura_dish_contents {
  border: solid 1px #fff;
  padding: 20px 5%;
  margin-bottom: 20px;
}

.kura_dish_ttl {
  font-size: 15px;
  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;
  margin-bottom: 50px;
  background-image: url(../img/kuranoma/shop.png);
  background-size: cover;
  background-position: top -60px right -365px;
  position: relative;
}

.kura_shop_sec::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}

.kura_shop_info {
  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 {}

.kura_concept_sec , .kura_dish_sec , .kura_shop_sec {
  /* padding-top: 90px;
  margin-top: -90px; */
}

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

  .shop_area_btn a {
    color: #fff;
  border: solid 1px #fff;
  border-radius: 5px;
  padding: 10px 20px;
width: 47%;
  text-align: center;
  margin: 0 1%;
  }

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

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