@charset "UTF-8";
/* Scss Document */
/*====================================================================
	index
====================================================================

Part name///
	01 General_style
	02 Common_style
	03 Top_style
*/
/*====================================================================
	01 General_style
====================================================================*/
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Meiryo, sans-serif, "宋体", Gulim;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 800px) {
  body {
    overflow-x: hidden;
  }
}
body.on {
  position: fixed;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .sp {
    display: inherit;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.inview {
  opacity: 0;
  -webkit-transition: all 1s ease-in-out 0s;
  -ms-transition: all 1s ease-in-out 0s;
  -moz-transition: all 1s ease-in-out 0s;
  -o-transition: all 1s ease-in-out 0s;
  transition: all 1s ease-in-out 0s;
}
.inview.on {
  opacity: 1;
}

/* Scss Document */
/*====================================================================
	index
====================================================================

Part name///
	01 General_style
	02 Common_style
	03 Top_style
*/
/*---------------------------------------------------------
	header
*/
header {
  position: relative;
  display: block;
  width: 100%;
  height: 170px;
}
@media screen and (max-width: 800px) {
  header {
    height: 80px;
  }
}
header .logo {
  display: block;
  width: 75px;
  margin: 0 auto;
  padding: 25px 0;
}
@media screen and (max-width: 800px) {
  header .logo {
    padding: 10px 0;
  }
}
header ul {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  letter-spacing: -0.4em;
  text-align: center;
  box-sizing: initial;
}
@media screen and (max-width: 800px) {
  header ul {
    position: fixed;
    top: 80px;
    right: -100%;
    height: 100%;
    background: #fff;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
}
header ul li {
  display: inline-block;
  letter-spacing: 0.06em;
  font-family: "Lora", serif;
  margin: 0 25px;
}
@media screen and (max-width: 800px) {
  header ul li {
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 800px) {
  header ul.on {
    right: 0;
  }
}
header .sp_menu {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 800px) {
  header .sp_menu {
    display: block;
  }
}
header .sp_menu span {
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background: #000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
header .sp_menu span:first-child {
  top: 30px;
  bottom: auto;
}
header .sp_menu span:last-child {
  top: auto;
  bottom: 30px;
}
header .sp_menu.on span:first-child {
  -webkit-transform: translateY(9px) rotate(-45deg);
  -ms-transform: translateY(9px) rotate(-45deg);
  -moz-transform: translateY(9px) rotate(-45deg);
  -o-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
header .sp_menu.on span:nth-child(2) {
  opacity: 0;
}
header .sp_menu.on span:last-child {
  -webkit-transform: translateY(-9px) rotate(45deg);
  -ms-transform: translateY(-9px) rotate(45deg);
  -moz-transform: translateY(-9px) rotate(45deg);
  -o-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

/* Scss Document */
/*====================================================================
	index
====================================================================

Part name///
	01 General_style
	02 Common_style
	03 Top_style
*/
/*---------------------------------------------------------
	footer
*/
footer {
  display: block;
  width: 100%;
  height: 200px;
  background: url("../images/footer_img.jpg") center center;
  background-size: cover;
  color: #fff;
  text-align: center;
  font-family: "Lora", serif;
}
@media screen and (max-width: 800px) {
  footer {
    height: 250px;
  }
}
footer p {
  font-size: 1.66em;
  letter-spacing: 0.04em;
  padding: 50px 0 40px;
}
footer ul {
  letter-spacing: -0.4em;
  padding: 0 0 30px;
}
footer ul li {
  letter-spacing: normal;
  display: inline-block;
  height: 11px;
  line-height: 11px;
  padding: 0 30px;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 800px) {
  footer ul li {
    width: 50%;
    border: none;
    margin-bottom: 30px;
  }
}
footer ul li:last-child {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 800px) {
  footer ul li:last-child {
    border-right: none;
  }
}
footer ul li a {
  color: #fff;
  font-size: 0.91em;
  letter-spacing: 0.06em;
}
footer ul li a:link, footer ul li a:visited {
  color: #fff;
}
footer address {
  font-style: normal;
  letter-spacing: 0.06em;
}

/* Scss Document */
/*====================================================================
	index
====================================================================

Part name///
	01 General_style
	02 Common_style
	03 Top_style
*/
/*---------------------------------------------------------
	Top
*/
h2 {
  font-family: "Lora", serif;
  font-size: 4.16em;
  text-align: center;
}
@media screen and (max-width: 800px) {
  h2 {
    font-size: 2em;
  }
}
h2 span {
  position: relative;
  top: 5px;
  font-size: 1.4em;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #000;
  -ms-text-stroke: 1px #000;
  -moz-text-stroke: 1px #000;
  -o-text-stroke: 1px #000;
  text-stroke: 1px #000;
  margin: 0 25px 0 0;
}

section {
  position: relative;
  min-width: 990px;
  padding: 100px 0;
  overflow-x: hidden;
}
@media screen and (max-width: 800px) {
  section {
    min-width: 100%;
    padding: 60px 0;
  }
}

#main {
  padding: 0;
  z-index: -9;
}
#main .img_area {
  display: block;
  width: 100%;
  height: 620px;
  background-image: url("../images/mainbg.jpg");
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 800px) {
  #main .img_area {
    background-position: center center;
  }
}
#main .img_area img {
  position: absolute;
  margin: auto;
}
#main .img_area img.main_img_logo {
  width: 260px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 800px) {
  #main .img_area img.main_img_logo {
    max-width: 50%;
  }
}
#main .img_area img.main_img_txt {
  width: 392px;
  top: 0;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 800px) {
  #main .img_area img.main_img_txt {
    max-width: 60%;
    top: auto;
  }
}
#main .scroll_down {
  position: absolute;
  bottom: 70px;
  left: 0;
  right: 0;
  display: block;
  width: 130px;
  height: 30px;
  margin: auto;
  font-family: "Foxtrail";
  color: #fff;
  font-size: 3.16em;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 1s ease-in-out 0s;
  -ms-transition: all 1s ease-in-out 0s;
  -moz-transition: all 1s ease-in-out 0s;
  -o-transition: all 1s ease-in-out 0s;
  transition: all 1s ease-in-out 0s;
}
#main .scroll_down.on {
  opacity: 1;
}
#main .scroll_down .arrow {
  margin-top: 10px;
}
#main .scroll_down .arrow img {
  width: 20px;
}

#concept h3 {
  text-align: center;
  font-family: notosans;
  font-size: 2.5em;
  line-height: 1.14;
  padding: 70px 0 50px;
}
#concept h3 span {
  font-size: 1.8em;
}
#concept p {
  font-family: notosans;
  font-size: 1.25em;
  display: block;
  width: 600px;
  margin: 0 auto;
  line-height: 2.66;
}
@media screen and (max-width: 800px) {
  #concept p {
    width: 80%;
    max-width: 380px;
    font-size: 1.08em;
  }
}
#concept .bg_area {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#concept .bg_area img {
  position: absolute;
}
@media screen and (max-width: 800px) {
  #concept .bg_area img {
    display: none;
  }
}
#concept .bg_area.bg_color {
  background: url("../images/bg_img.jpg");
}
#concept .bg_area img.l_herb {
  max-width: 227px;
  top: 320px;
  left: 0;
}
#concept .bg_area img.l_mushroom {
  max-width: 170px;
  top: 70px;
  left: 0;
}
#concept .bg_area img.l_pan {
  max-width: 223px;
  top: 55px;
  left: 110px;
}
#concept .bg_area img.l_tomato {
  max-width: 126px;
  top: 220px;
}
#concept .bg_area img.r_pan {
  max-width: 325px;
  top: 420px;
  right: 25px;
}
#concept .bg_area img.r_tomato_1 {
  max-width: 68px;
  top: 445px;
  right: 0;
}
#concept .bg_area img.r_tomato_2 {
  max-width: 188px;
  top: 210px;
  right: 30px;
}
#concept .bg_area img.r_turnip {
  max-width: 361px;
  top: -118px;
  right: 0;
}
#concept .bg_area_sp {
  display: none;
}
@media screen and (max-width: 800px) {
  #concept .bg_area_sp {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
#concept .bg_area_sp img {
  position: absolute;
}
#concept .bg_area_sp img.l_pan_sp {
  max-width: 223px;
  width: 30%;
  top: 100px;
  left: 5px;
}
#concept .bg_area_sp img.l_tomato_sp {
  max-width: 126px;
  width: 25%;
  top: 150px;
  left: 0;
}
#concept .bg_area_sp img.l_mushroom_sp {
  max-width: 170px;
  width: 30%;
  top: 10px;
  left: 0;
}
#concept .bg_area_sp img.l_herb_sp {
  max-width: 227px;
  width: 25%;
  bottom: -13%;
  left: 0;
}
#concept .bg_area_sp img.r_turnip_sp {
  max-width: 361px;
  width: 50%;
  top: 10px;
  right: -10%;
}
#concept .bg_area_sp img.r_tomato_1_sp {
  max-width: 68px;
  width: 15%;
  top: 250px;
  right: 0;
}
#concept .bg_area_sp img.r_tomato_2_sp {
  max-width: 188px;
  width: 30%;
  top: 120px;
  right: -10%;
}
#concept .bg_area_sp img.r_pan_sp {
  max-width: 325px;
  width: 50%;
  bottom: -20px;
  right: -5%;
}

#menu ul {
  width: 990px;
  margin: 70px auto 0;
  letter-spacing: -0.4em;
  text-align: center;
}
@media screen and (max-width: 800px) {
  #menu ul {
    width: 100%;
    margin: 100px auto 0;
  }
}
#menu ul li {
  position: relative;
  letter-spacing: normal;
  display: inline-block;
  width: 475px;
  vertical-align: top;
  background-size: cover;
  text-align: center;
  padding: 0 0 130px;
  z-index: 9;
  box-shadow: 7px 7px 10px rgba(142, 142, 142, 0.13);
}
@media screen and (max-width: 800px) {
  #menu ul li {
    display: block;
    width: 96%;
    margin: 0 auto;
  }
}
#menu ul li .menu_ttl {
  position: absolute;
  top: -55px;
  left: 0;
  right: 0;
  display: block;
  width: 130px;
  height: 130px;
  border-radius: 75px;
  margin: auto;
  padding: 10px 0 0;
  z-index: -1;
  font-family: "Foxtrail";
  font-size: 3.33em;
  letter-spacing: 0.04em;
}
#menu ul li.food {
  background-image: url("../images/menu/menu_bg_food.jpg");
  margin-right: 20px;
  background-size: auto;
}
@media screen and (max-width: 800px) {
  #menu ul li.food {
    margin-right: auto;
    margin-bottom: 100px;
  }
}
#menu ul li.food .menu_ttl {
  background-image: url("../images/menu/menu_bg_food.jpg");
  padding-right: 10px;
}
#menu ul li.drink {
  background-image: url("../images/menu/menu_bg_drink.jpg");
  background-size: auto;
}
#menu ul li.drink .menu_ttl {
  background-image: url("../images/menu/menu_bg_drink.jpg");
}
#menu ul li h3 {
  font-family: "Raleway", sans-serif;
  font-size: 1.33em;
  letter-spacing: 0.04em;
  color: #695c4f;
  padding: 60px 0 0;
}
@media screen and (max-width: 800px) {
  #menu ul li h3 {
    padding: 30px 0 0;
  }
}
#menu ul li .menu_txt {
  display: flex;
  width: 60%;
  margin: 15px auto 0;
}
@media screen and (max-width: 800px) {
  #menu ul li .menu_txt {
    width: 70%;
  }
}
#menu ul li .menu_txt p {
  font-family: notosans;
  font-size: 1.16em;
}
#menu ul li .menu_txt p.name {
  flex: 2;
  text-align: left;
}
#menu ul li .menu_txt p.price {
  text-align: right;
}
#menu ul li .more {
  font-family: "Foxtrail";
  position: absolute;
  bottom: 50px;
  right: 20px;
  font-size: 3em;
}
#menu .bg_area {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#menu .bg_area img {
  position: absolute;
}
@media screen and (max-width: 800px) {
  #menu .bg_area img {
    display: none;
  }
}
#menu .bg_area.bg_color {
  background: url("../images/bg_img.jpg");
}
#menu .bg_area img {
  z-index: -1;
}
#menu .bg_area img.l_pasta {
  width: 282px;
  top: 70px;
  left: 0;
}
#menu .bg_area img.r_yummy {
  width: 191px;
  top: 170px;
  right: 100px;
}
#menu .bg_area_sp {
  display: none;
}
@media screen and (max-width: 800px) {
  #menu .bg_area_sp {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
#menu .bg_area_sp img {
  position: absolute;
}
#menu .bg_area_sp img {
  z-index: -1;
}
#menu .bg_area_sp img.l_pasta_sp {
  max-width: 282px;
  width: 40%;
  top: 70px;
  left: 0;
}
#menu .bg_area_sp img.r_yummy_sp {
  max-width: 191px;
  width: 30%;
  top: 120px;
  right: 0;
}

#course .img_area {
  display: block;
  width: 990px;
  height: 200px;
  margin: 60px auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  #course .img_area {
    width: 100%;
    height: 0;
    padding-top: 50%;
  }
}
#course .img_area img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#course ul {
  letter-spacing: -0.4em;
  text-align: center;
  margin: 0 auto;
}
#course ul li {
  letter-spacing: normal;
  vertical-align: top;
  display: inline-block;
  width: 350px;
  font-family: notosans;
}
@media screen and (max-width: 800px) {
  #course ul li {
    margin-bottom: 50px;
  }
}
#course ul li h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}
#course ul li p.price {
  color: #76685b;
  margin-bottom: 20px;
  line-height: 1.5;
}
#course ul li p.list {
  font-size: 1.16em;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 800px) {
  #course ul li {
    width: 100%;
  }
}
#course ul li:first-child {
  margin-bottom: 50px;
}
#course ul li span {
  display: none;
}
@media screen and (max-width: 800px) {
  #course ul li span {
    display: initial;
  }
}
#course .bg_area {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#course .bg_area img {
  position: absolute;
}
@media screen and (max-width: 800px) {
  #course .bg_area img {
    display: none;
  }
}
#course .bg_area.bg_color {
  background: url("../images/bg_img.jpg");
}
#course .bg_area img.l_lemon {
  width: 169px;
  top: 88px;
  left: 0;
}
#course .bg_area img.r_cake {
  width: 181px;
  top: 550px;
  right: 0;
}
#course .bg_area_sp {
  display: none;
}
@media screen and (max-width: 800px) {
  #course .bg_area_sp {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
#course .bg_area_sp img {
  position: absolute;
}
#course .bg_area_sp img.l_lemon_sp {
  max-width: 169px;
  top: 350px;
  left: 0;
  width: 23%;
}
#course .bg_area_sp img.r_cake_sp {
  max-width: 181px;
  bottom: 10px;
  right: 0;
  width: 30%;
}

#group .img_area {
  display: block;
  width: 990px;
  height: 200px;
  margin: 60px auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  #group .img_area {
    width: 100%;
    height: 0;
    padding-top: 50%;
  }
}
#group .img_area img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#group ul {
  letter-spacing: -0.4em;
  width: 990px;
  margin: 70px auto 0;
  text-align: center;
}
@media screen and (max-width: 800px) {
  #group ul {
    width: 100%;
  }
}
#group ul li {
  letter-spacing: normal;
  display: inline-block;
  width: 290px;
  margin: 0 0 55px;
  font-family: notosans;
}
@media screen and (max-width: 800px) {
  #group ul li {
    width: 48%;
    margin: 0 1% 30px;
  }
}
#group ul li:nth-child(3n-1) {
  margin: 0 60px 55px;
}
@media screen and (max-width: 800px) {
  #group ul li:nth-child(3n-1) {
    margin: 0 1% 30px;
  }
}
#group ul li img {
  margin: 0 0 15px;
}
#group ul li p {
  margin: 0 0 5px;
}
#group ul li p.catch {
  color: #999;
  font-size: 0.91em;
}
#group ul li p.name {
  font-size: 1.16em;
}
#group ul li p.price {
  color: #76685b;
  font-style: italic;
}
#group ul li a.btn {
  display: block;
  width: 122px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-family: "Lora", serif;
  color: #fff;
  background: #000;
  margin: 0 0 0 auto;
}
#group .bg_area {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#group .bg_area img {
  position: absolute;
}
@media screen and (max-width: 800px) {
  #group .bg_area img {
    display: none;
  }
}
#group .bg_area.bg_color {
  background: url("../images/bg_img.jpg");
}
#group .bg_area img.l_yummy {
  width: 90px;
  top: 190px;
  left: 40px;
}
#group .bg_area img.l_cheese {
  width: 154px;
  top: 210px;
  left: 90px;
}
#group .bg_area img.r_pan {
  width: 240px;
  top: 300px;
  right: 0;
}
#group .bg_area_sp {
  display: none;
}
@media screen and (max-width: 800px) {
  #group .bg_area_sp {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
#group .bg_area_sp img {
  position: absolute;
}
#group .bg_area_sp img.l_yummy_sp {
  max-width: 195px;
  top: 90px;
  right: 10px;
  width: 30%;
}
#group .bg_area_sp img.l_cheese_sp {
  max-width: 154px;
  top: 5px;
  left: -5%;
  width: 30%;
}
#group .bg_area_sp img.r_pan_sp {
  max-width: 240px;
  bottom: -30px;
  right: -10%;
  width: 40%;
}

#online ul {
  letter-spacing: -0.4em;
  width: 990px;
  margin: 70px auto 0;
  text-align: center;
}
@media screen and (max-width: 800px) {
  #online ul {
    width: 100%;
  }
}
#online ul li {
  letter-spacing: normal;
  display: inline-block;
  width: 290px;
  margin: 0 0 55px;
  font-family: notosans;
}
@media screen and (max-width: 800px) {
  #online ul li {
    width: 48%;
    margin: 0 1% 30px;
  }
}
#online ul li:nth-child(3n-1) {
  margin: 0 60px 55px;
}
@media screen and (max-width: 800px) {
  #online ul li:nth-child(3n-1) {
    margin: 0 1% 30px;
  }
}
#online ul li img {
  margin: 0 0 15px;
}
#online ul li p {
  margin: 0 0 5px;
}
#online ul li p.catch {
  color: #999;
  font-size: 0.91em;
}
#online ul li p.name {
  font-size: 1.16em;
}
#online ul li p.price {
  color: #76685b;
  font-style: italic;
}
#online ul li a.btn {
  display: block;
  width: 122px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-family: "Lora", serif;
  color: #fff;
  background: #000;
  margin: 0 0 0 auto;
}
#online .bg_area {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#online .bg_area img {
  position: absolute;
}
@media screen and (max-width: 800px) {
  #online .bg_area img {
    display: none;
  }
}
#online .bg_area.bg_color {
  background: url("../images/bg_img.jpg");
}

#access {
  padding-bottom: 50px;
}
#access iframe {
  display: block;
  margin: 70px auto 0;
  max-width: 100%;
}
#access .info {
  text-align: center;
  margin: 60px auto 0;
}
#access .info p {
  font-family: "Lora", serif;
  letter-spacing: 0.06em;
}
#access .info p.hours {
  font-size: 1.5em;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 800px) {
  #access .info p.hours {
    font-size: 1.2em;
  }
}
#access .info p.address {
  font-size: 1.16em;
  line-height: 1.7;
  margin-bottom: 25px;
}
#access .info p.address a {
  width: 100%;
}
@media screen and (max-width: 800px) {
  #access .info p.address {
    font-size: 1em;
  }
}
#access .info a {
  display: block;
  width: 48px;
  margin: 0 auto;
}
#access .info a img {
  width: 100%;
}
#access .bg_area {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#access .bg_area img {
  position: absolute;
}
@media screen and (max-width: 800px) {
  #access .bg_area img {
    display: none;
  }
}
#access .bg_area.bg_color {
  background: url("../images/bg_img.jpg");
}
#access .bg_area img.l_finger {
  width: 161px;
  top: 310px;
  left: 0;
}
#access .bg_area img.r_finger {
  width: 215px;
  top: 120px;
  right: 0;
}
#access .bg_area_sp {
  display: none;
}
@media screen and (max-width: 800px) {
  #access .bg_area_sp {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
#access .bg_area_sp img {
  position: absolute;
}
#access .bg_area_sp img.l_finger_sp {
  max-width: 161px;
  bottom: 60px;
  left: 0;
  width: 30%;
}
#access .bg_area_sp img.r_finger_sp {
  max-width: 215px;
  top: 110px;
  right: 0;
  width: 40%;
}

.reservation_btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: block;
  width: auto;
  margin: 0 auto;
  padding: 25px 50px;
  text-align: center;
  font-size: 1.16em;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); /* 影を薄く（透明度15%）追加 */
  box-sizing: border-box;
  background-image: linear-gradient(45deg, #FFA500, #FF4500); /* 斜め方向のグラデーション */
  border: none; /* 境界線なし */
  border-radius: 5px; /* 角の丸みを5pxに設定 */
  transition: background-image 0.5s ease; /* 背景グラデーションの変化にアニメーションを設定 */
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  z-index: 99;
}
@media screen and (max-width: 800px) {
  .reservation_btn {
    bottom: 20px;
    right: 20px;
  }
}
.reservation_btn:link {
  color: #fff;
}
.reservation_btn:hover {
  background-image: linear-gradient(45deg, #FF4500, #FFA500); /* ホバー時のグラデーションを逆方向に */
  opacity: 1;
}