@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%;
  background-image: url(../img/html_bg.jpg);
  background-repeat: repeat;
  scroll-behavior: smooth;
}
.mb10{
  margin-bottom: 10px;
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 0.5209vw;
  }
}

body {
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  color: #3c3c3c;
  word-break: break-all;
  -webkit-font-feature-settings: "liga", "dlig";
          font-feature-settings: "liga", "dlig";
}

.ly-body--inner {
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.ly-display-area {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.ly-content-area {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

@media screen and (min-width: 1074px) {
  .ly-body--inner {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 192rem;
  }
  .ly-display-area {
    width: 100vw;
  }
  .ly-content-area {
    max-width: 96rem;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: inherit;
}

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

.sp {
  display: block;
}

@media screen and (min-width: 400px) {
  .sp {
    display: none;
  }
}

.sp-tab {
  display: block;
}

@media screen and (min-width: 1074px) {
  .sp-tab {
    display: none;
  }
}

.tab {
  display: none;
}

@media screen and (min-width: 400px) {
  .tab {
    display: block;
  }
}

@media screen and (min-width: 1074px) {
  .tab {
    display: none;
  }
}

.pc {
  display: none;
}

@media screen and (min-width: 1074px) {
  .pc {
    display: block;
  }
}

.tab-pc {
  display: none;
}

@media screen and (min-width: 400px) {
  .tab-pc {
    display: block;
  }
}

.sp-tab02 {
  display: block;
}

@media screen and (min-width: 700px) {
  .sp-tab02 {
    display: none;
  }
}

.tab02 {
  display: none;
}

@media screen and (min-width: 400px) {
  .tab02 {
    display: block;
  }
}

@media screen and (min-width: 700px) {
  .tab02 {
    display: none;
  }
}

.pc02 {
  display: none;
}

@media screen and (min-width: 700px) {
  .pc02 {
    display: block;
  }
}

.tab02-pc {
  display: none;
}

@media screen and (min-width: 700px) {
  .tab02-pc {
    display: block;
  }
}

.text-bold {
  font-weight: 500;
}

.text-s {
  font-size: 1.3rem;
}

.text-en {
  font-family: 'Didact Gothic', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.text-fade {
  display: block;
  overflow: hidden;
  width: 1px;
  height: 1px;
}

.text-fade span {
  text-indent: -99999rem;
}

.md-bgimage {
  background-repeat: no-repeat;
  background-size: 100%;
}

.md-bgimage-cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.md-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-position: center center;
  width: 100%;
  height: 37.5rem;
}

.md-section-title-img {
  width: 40%;
  max-width: 21.8rem;
}

.play .md-section-title {
  background-image: url(../img/play_title_bg.jpg);
  background-position: right 10% center;
}

.eat .md-section-title {
  background-image: url(../img/eat_title_bg.jpg);
  background-position: left center;
}

.cook .md-section-title {
  background-image: url(../img/cook_title_bg.jpg);
  background-position: center center;
}

@media screen and (min-width: 700px) {
  .md-section-title {
    height: 50rem;
  }
  .md-section-title-img {
    width: 25%;
  }
  .play .md-section-title {
    background-position: center center;
  }
  .eat .md-section-title {
    background-position: left center;
  }
  .cook .md-section-title {
    background-position: center center;
  }
}

/* エフェクト関係----------------------------------*/
/* 画面外にいる状態 */
.js_fadein {
  opacity: 0;
  -webkit-transform: translate(0, 2.5rem);
          transform: translate(0, 2.5rem);
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

/* 画面内に入った状態 */
.js_fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.mv .ly-display-area {
  position: relative;
}

.mv--header-title {
  position: absolute;
  top: 5.7%;
  left: 5.7%;
  font-size: 1.2rem;
}

.mv--header-cap {
  font-size: 1.1rem;
  color: #666666;
  padding: 1.2em 0;
}

@media screen and (min-width: 1074px) {
  .mv--header-cap {
    position: absolute;
    top: 5.7%;
    right: 5.7%;
    padding: 0;
  }
}

.nav {
  position: relative;
  background-image: url(../img/patern010.jpg);
  background-repeat: repeat;
  min-height: 4rem;
  width: 100%;
  z-index: 999;
}

.nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

.nav ul li {
  width: 100%;
}

.nav ul a {
  position: relative;
}

.nav ul a:hover::after {
  content: "";
  width: 1.9rem;
  height: 1.6rem;
  background-image: url(../img/navi_on.png);
  background-repeat: no-repeat;
  position: absolute;
  bottom: -1.2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
}

@media screen and (min-width: 1074px) {
  .nav.fixed {
    position: fixed;
    top: 0;
    -webkit-box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
  }
}

.side_btn {
  position: fixed;
  z-index: 9999;
  top: 15rem;
  right: 0;
}

.side_btn a {
  display: block;
  width: 6.0rem;
  height: 9.1rem;
  margin-bottom: 1rem;
}

.side_btn a img {
  width: 100%;
}

.side_btn a.side_btn_01 {
  background-color: #62c183;
}

.side_btn a.side_btn_01:hover {
  background-color: #4a8b60;
}

.side_btn a.side_btn_02 {
  background-color: #6088a0;
}

.side_btn a.side_btn_02:hover {
  background-color: #496a7e;
}

.side_btn a.side_btn_03 {
  background-color: #c47e5f;
}

.side_btn a.side_btn_03:hover {
  background-color: #916552;
}

.block00--inner {
  padding: 12.8vw 7.5%;
}

@media screen and (min-width: 700px) {
  .block00--inner {
    width: 85%;
    margin: 0 auto;
    padding: 8rem 0 8rem;
  }
}

@media screen and (min-width: 400px) {
  .block00--banner img {
    width: 80%;
    max-width: 32rem;
    margin: 0 auto;
  }
}

@media screen and (min-width: 700px) {
  .block00--banner {
    width: 100%;
    height: 24rem;
    background-image: url(../img/line_dotted_white.png), url(../img/line_dotted_white.png), url(../img/line_stripe_blue.png), url(../img/line_stripe_blue.png), url(../img/block00_banner_bg.jpg);
    background-repeat: repeat-x,repeat-x,repeat-x,repeat-x,no-repeat;
    background-position: center bottom 2rem,center top 2rem,center top,center bottom,center center;
    background-size: auto,auto,auto,auto,cover;
  }
  .block00--banner img {
    width: auto;
    max-width: inherit;
    height: 24rem;
    margin: 0 16% 0 auto;
  }
}

@media screen and (min-width: 1074px) {
  .block00--banner {
    height: 32rem;
  }
  .block00--banner img {
    height: 32rem;
  }
}

.block00--pagenavi {
  margin-top: 3.2vw;
}

.block00--pagenavi li {
  display: block;
  width: 100%;
}

.block00--pagenavi-item {
  display: block;
  margin-bottom: 4.8rem;
  color: #6b96a2;
  width: 100%;
}

.block00--pagenavi-item-title {
  border-bottom: 1px solid #6b96a2;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
}

.block00--pagenavi-item-img {
  width: 100%;
  height: 16rem;
  overflow: hidden;
}

.block00--pagenavi-item-img div {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.block00--pagenavi-item-img div.tour {
  background-image: url(../img/block00_banner01.jpg);
}

.block00--pagenavi-item-img div.menu {
  background-image: url(../img/block00_banner02.jpg);
}

.block00--pagenavi-item-img div.cook {
  background-image: url(../img/block00_banner03.jpg);
}

.block00--pagenavi-item-img div.accesslink {
  background-image: url(../img/block00_banner04.jpg);
}

.block00--pagenavi-item-text {
  margin-top: 1.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.8;
}

.block00--pagenavi-item-text-01 {
  font-size: 1.6rem;
}

.block00--pagenavi-item-text-02 {
  font-size: 1.4rem;
}

.block00--pagenavi-item:hover .block00--pagenavi-item-img div {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media screen and (min-width: 700px) {
  .block00--pagenavi {
    margin-top: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .block00--pagenavi li {
    width: 48%;
  }
  .block00--pagenavi-item-text {
    min-height: 7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 1074px) {
  .block00--pagenavi li {
    width: 24%;
  }
  .block00--pagenavi-item-img {
    height: 21rem;
  }
}

.block10 {
  position: relative;
  padding: 1rem 0;
  background-image: url(../img/line_stripe_blown.png), url(../img/line_stripe_blown.png), url(../img/patern020.jpg);
  background-repeat: repeat-x,repeat-x,repeat;
  background-position: center top,center bottom,center center;
  background-size: auto,auto,auto;
}

@media screen and (min-width: 1074px) {
  .block10 {
    padding-bottom: 8rem;
  }
}

.block10--intro {
  padding: 12.5vw 7.5% 0;
}

.block10--intro-youtube div {
  padding-top: 56.25%;
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
}

.block10--intro-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

@media screen and (min-width: 400px) {
  .block10--intro-youtube {
    padding: 0;
  }
}

@media screen and (min-width: 1074px) {
  .block10--intro {
    padding: 0;
    padding-top: 12rem;
    min-height: 73.7rem;
    background-image: url(../img/block01_bg_c.png);
  }
  .block10--intro-title {
    position: relative;
  }
  .block10--intro-title img {
    position: relative;
    top: 0;
  }
  .block10--intro-text {
    padding: 6.4rem 8%;
  }
  .block10--intro-youtube {
    padding: 0 8%;
  }
}

.block10--comment {
  margin-top: 21.3vw;
}

.block10--comment-item {
  margin-bottom: 10.6vw;
}

.block10--comment-item-img {
  width: 80%;
  max-width: 25rem;
  margin: 0 auto;
}

.block10--comment-item-text {
  background-image: url(../img/line_stripe_blue.png), url(../img/patern030.jpg);
  background-size: auto;
  background-repeat: repeat-x,repeat;
  text-align: left;
  text-align: justify;
  padding: 29.3vw 7.5% 16vw;
  margin-top: -29.3vw;
}

.block10--comment-item.dad {
  margin-top: -18.6vw;
  margin-bottom: 0;
}

.block10--comment-item.dad .block10--comment-item-img {
  width: 70%;
  margin-left: auto;
  margin-right: 2.1vw;
}

@media screen and (min-width: 400px) {
  .block10--comment-item-img {
    margin: 0 4% 0 auto;
    max-width: inherit;
    width: 70vw;
  }
  .block10--comment-item-text {
    padding-top: 25vw;
  }
  .block10--comment-item.dad .block10--comment-item-img {
    width: 60vw;
  }
  .block10--comment-item.dad .block10--comment-item-text {
    padding-top: 30vw;
  }
}

@media screen and (min-width: 600px) {
  .block10--comment {
    margin-top: 16vw;
    padding-bottom: 10vw;
  }
  .block10--comment-item {
    margin-bottom: 2.6vw;
  }
  .block10--comment-item-img {
    width: 44vw;
  }
  .block10--comment-item-text {
    padding: 8vw 44vw 8vw 8vw;
    margin-right: 7.5%;
    margin-top: -46vw;
  }
  .block10--comment-item.dad {
    margin-top: 0;
  }
  .block10--comment-item.dad .block10--comment-item-img {
    width: 44vw;
    margin-left: 3vw;
    margin-right: auto;
  }
  .block10--comment-item.dad .block10--comment-item-text {
    margin-left: 7.5%;
    margin-right: 0;
    margin-top: -40vw;
    padding: 8vw 8vw 8vw 44vw;
  }
}

@media screen and (min-width: 1074px) {
  .block10--comment {
    margin-top: 0rem;
    margin-bottom: 0;
    padding-bottom: 4rem;
  }
  .block10--comment-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    position: relative;
  }
  .block10--comment-item-img {
    z-index: 10;
    position: absolute;
    bottom: -3.1rem;
    left: -35rem;
    width: 65.4rem;
    max-width: inherit;
    margin: 0;
  }
  .block10--comment-item-text {
    z-index: 9;
    margin-top: 0rem;
    margin-left: 7.5%;
    margin-right: 0;
    padding: 4rem 7.5% 4rem 32.3rem;
  }
  .block10--comment-item.dad {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-top: 7rem;
    margin-bottom: 8rem;
  }
  .block10--comment-item.dad .block10--comment-item-img {
    left: inherit;
    bottom: -4rem;
    right: -17rem;
    width: 59.9rem;
    margin-left: 4rem;
    margin-right: -4rem;
  }
  .block10--comment-item.dad .block10--comment-item-text {
    margin: 0 7.5% 0 0;
    padding: 4rem 35rem 4rem 7.5%;
  }
}

.play {
  position: relative;
  background-image: url(../img/line_dotted_white.png), url(../img/patern040.jpg);
  background-repeat: repeat-x,repeat;
  background-position: center bottom 1.2rem,center center;
}

.play--content {
  background-image: url(../img/play_content_bg_a.png);
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: -16vw;
  padding: 0 7.5%;
}

.play--content-title {
  padding-top: 16vw;
  max-width: 40rem;
  margin: 0 auto;
}

.play--content-banner {
  padding-bottom: 16vw;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
}

.play--content-banner a {
  display: block;
  -webkit-transition: all 0.1s cubic-bezier(0.55, 1.14, 0.87, 1.34);
  transition: all 0.1s cubic-bezier(0.55, 1.14, 0.87, 1.34);
}

.play--content-banner a:hover {
  opacity: 0.7;
  -webkit-filter: drop-shadow(2px 2px 2px #c9c4b5);
          filter: drop-shadow(2px 2px 2px #c9c4b5);
  -webkit-transition: all 0.1s cubic-bezier(0.55, 1.14, 0.87, 1.34);
  transition: all 0.1s cubic-bezier(0.55, 1.14, 0.87, 1.34);
}

.play--content-decoration .ly-content-area {
  padding-top: 8vw;
  width: 80%;
  max-width: 30rem;
  margin-left: auto;
  margin-right: 4vw;
}

.play--content-decoration .ly-content-area img {
  margin-bottom: -5vw;
}

@media screen and (min-width: 700px) {
  .play--content .ly-content-area {
    padding: 0;
  }
  .play--content-title {
    max-width: inherit;
  }
  .play--content-banner {
    margin-top: 4rem;
    max-width: inherit;
  }
  .play--content-banner a {
    margin-bottom: 4rem;
  }
  .play--content-decoration {
    margin-top: -17rem;
  }
  .play--content-decoration .ly-content-area {
    width: 39.4rem;
    max-width: inherit;
    margin-left: auto;
    margin-right: 7.5%;
  }
}

@media screen and (min-width: 1074px) {
  .play--content {
    background-image: url(../img/play_content_bg_c.png);
    height: 186.6rem;
    margin-top: -18.5rem;
    padding: 0;
  }
  .play--content-title {
    width: 100%;
    padding-top: 14rem;
  }
  .play--content-banner {
    width: 100%;
    padding-bottom: 9vw;
  }
  .play--content-banner a {
    margin-bottom: 4vw;
  }
  .play--content-banner .banner-01 {
    margin-top: -2rem;
  }
  .play--content-banner .banner-02 {
    margin-top: 12rem;
  }
  .play--content-banner .banner-03 {
    margin-top: 10rem;
  }
}

.eat--intro {
  background-image: url(../img/line_stripe_darkblown.png);
  background-repeat: repeat-x;
  background-position: center top;
}

.eat--intro .ly-content-area {
  padding: 14.2vw 10% 0;
}

.eat--intro-title {
  max-width: 32rem;
  margin: 0 auto;
}

.eat--intro-text {
  padding: 3.2rem 0;
  color: #888175;
  text-align: left;
  text-align: justify;
}

.eat--intro-text p {
  margin-bottom: 1em;
}

@media screen and (min-width: 400px) {
  .eat--intro .ly-content-area {
    padding: 8rem 8% 0;
  }
}

@media screen and (min-width: 700px) {
  .eat--intro-title {
    max-width: inherit;
  }
}

@media screen and (min-width: 1074px) {
  .eat--intro .ly-content-area {
    padding: 8rem 0 0;
    width: 79.8rem;
  }
}

.eat--menu {
  padding: 4rem 0 0;
}

.eat--menu-item {
  margin-bottom: 4rem;
}

.eat--menu-item-title {
  max-width: 40rem;
  margin: 0 auto;
}

.eat--menu-item-text {
  padding: 0 10%;
  text-align: left;
  text-align: justify;
  color: #3c3c3c;
}

@media screen and (min-width: 700px) {
  .eat--menu .ly-content-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .eat--menu-item {
    width: 48%;
  }
  .eat--menu .item01 .eat--menu-item-title {
    height: 42rem;
  }
  .eat--menu .item02 .eat--menu-item-title {
    height: 42rem;
  }
  .eat--menu .item03 .eat--menu-item-title {
    height: 45rem;
  }
  .eat--menu .item04 .eat--menu-item-title {
    height: 45rem;
  }
}

@media screen and (min-width: 1074px) {
  .eat--menu {
    background-image: url(../img/eat_menu_bg_c.png);
    height: 176rem;
    padding: 0;
  }
  .eat--menu .ly-content-area {
    display: block;
    width: 79.6rem;
  }
  .eat--menu-item {
    width: 100%;
  }
  .eat--menu-item-title {
    display: block;
  }
  .eat--menu-item-text {
    padding: 2rem 0 0;
  }
  .eat--menu .item01 {
    width: 42.5rem;
    padding-top: 15rem;
    margin-left: auto;
  }
  .eat--menu .item01 .eat--menu-item-title {
    width: 23.8rem;
    height: inherit;
    margin: 0 auto 0 0;
  }
  .eat--menu .item02 {
    width: 41.7rem;
    padding-top: 10rem;
    margin: 0 auto 0 0;
  }
  .eat--menu .item02 .eat--menu-item-title {
    width: 38.4rem;
    height: inherit;
    margin: 0 auto 0 0;
  }
  .eat--menu .item03 {
    width: 42.5rem;
    padding-top: 13rem;
    margin: 0 0 0 auto;
  }
  .eat--menu .item03 .eat--menu-item-title {
    width: 35.7rem;
    height: inherit;
    margin: 0 auto 0 0;
  }
  .eat--menu .item04 {
    width: 41.7rem;
    padding-top: 25rem;
    margin: 0 auto 0 0;
  }
  .eat--menu .item04 .eat--menu-item-title {
    width: 25.3rem;
    height: inherit;
    margin: 0 auto 0 0;
  }
}

.eat--trial-voice {
  background-image: url(../img/patern050.jpg);
  border-radius: 10rem 1rem 0 0;
  padding: 0 10% 10rem;
  padding-top: 105vw;
  margin-top: -112vw;
}

.eat--trial-voice-title {
  max-width: 30rem;
}

.eat--trial-voice-comment {
  margin-top: 1rem;
}

.eat--trial-voice-comment-item {
  text-align: left;
  text-align: justify;
  margin-bottom: 2.4rem;
}

.eat--trial-voice-comment-item:last-of-type {
  margin-bottom: 0;
}

.eat--trial-voice-comment-item-title {
  color: #cd4a2c;
  font-weight: normal;
}

.eat--trial-voice-comment-item-text {
  border-width: 1px;
  border-color: #333333;
  border-style: dotted;
  border-radius: 0.4rem 1rem 1rem 1rem;
  padding: 2rem;
}

@media screen and (min-width: 400px) {
  .eat--trial-title {
    max-width: 40rem;
  }
  .eat--trial-voice {
    margin-top: -46rem;
    padding-top: 46rem;
  }
}

@media screen and (min-width: 700px) {
  .eat--trial-title {
    max-width: inherit;
    padding-left: 7%;
    padding-right: 7%;
  }
  .eat--trial-voice {
    padding-left: 7%;
    padding-right: 7%;
    padding-top: 52vw;
    margin-top: -60vw;
  }
}

@media screen and (min-width: 1074px) {
  .eat--trial {
    position: relative;
    padding-bottom: 12.6rem;
    margin-top: -8rem;
  }
  .eat--trial::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 191.9rem;
    height: 155.9rem;
    background-image: url(../img/eat_taste_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
  }
  .eat--trial-title {
    width: 93.6rem;
    padding: 0;
  }
  .eat--trial-voice {
    width: 121.2rem;
    border-radius: 30rem 15rem 2rem 2rem;
    margin-top: -62rem;
    margin-left: 42rem;
    padding: 56rem 28rem 16rem 10rem;
  }
  .eat--trial-voice .ly-content-area {
    position: relative;
    z-index: 20;
  }
}

.eat--shop-intro .ly-content-area {
  padding: 6rem 0 2.5rem;
}

.eat--shop-intro-title {
  max-width: 37.5rem;
  margin: 0 auto;
}

.eat--shop-intro-text {
  padding: 0 10% 0;
  text-align: left;
  text-align: justify;
}

.eat--shop-list .ly-content-area {
  padding: 0 10% 2.5rem;
}

.eat--shop-list-item {
  max-width: 32rem;
  margin: 0 auto;
  margin-bottom: 5.6rem;
}

.eat--shop-list-item-content-title {
  text-align: left;
  color: #cd4a2c;
  font-size: 1.6rem;
  font-weight: normal;
  margin-top: 2.4rem;
}

.eat--shop-list-item-content-subcup {
  font-size: 1.2rem;
  text-align: left;
}

.eat--shop-list-item-content-text {
  margin-top: 2.4rem;
  text-align: left;
  text-align: justify;
}

@media screen and (min-width: 400px) {
  .eat--shop-intro-text {
    text-align: center;
  }
}

@media screen and (min-width: 700px) {
  .eat--shop-intro .ly-content-area {
    padding-left: 0;
    padding-right: 0;
  }
  .eat--shop-intro-title {
    max-width: inherit;
  }
  .eat--shop-intro-text {
    margin-top: 0.8rem;
  }
  .eat--shop-list {
    margin-top: 0.4rem;
  }
  .eat--shop-list .ly-content-area {
    padding-left: 0;
    padding-right: 0;
  }
  .eat--shop-list-group {
    display: box;
  }
  .eat--shop-list-item {
    width: 100%;
    max-width: inherit;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5rem 2.8rem 5rem 25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .eat--shop-list-item-img {
    width: 30%;
  }
  .eat--shop-list-item-content {
    width: 70%;
    padding-left: 6.4rem;
  }
  .eat--shop-list-item-content-title {
    margin-top: 0;
    margin-bottom: 0.6rem;
    line-height: 1;
  }
  .eat--shop-list-item-content-text {
    margin-top: 1.4rem;
  }
}

.cook {
  background-image: url(../img/patern060.jpg);
}

.cook--intro {
  padding: 2rem 0 30vw;
}

.cook--intro-title {
  max-width: 42rem;
  margin: 0 auto;
}

.cook--intro-text {
  padding: 2rem 10% 0;
  color: #646454;
  text-align: left;
  text-align: justify;
}

@media screen and (min-width: 700px) {
  .cook--intro {
    padding: 12rem 0 16rem;
  }
  .cook--intro .ly-content-area {
    width: 79.6rem;
  }
  .cook--intro-title {
    max-width: inherit;
  }
  .cook--intro-text {
    text-align: center;
  }
}

.cook--recipe {
  position: relative;
  background-color: rgba(247, 247, 247, 0.4);
  background-image: url(../img/line_dotted_white.png);
  background-repeat: repeat-x;
  background-position: center top 1rem;
  padding: 10rem 0 5rem;
}

.cook--recipe::before {
  content: "";
  width: 32.5rem;
  height: 25.8rem;
  background-image: url(../img/cook_intro_decoration_a.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -10rem;
  right: 0;
}

.cook--recipe-title {
  max-width: 40rem;
  margin: 0 auto;
}

.cook--recipe-button {
  width: 48vw;
  margin: 0 auto;
}

.cook--recipe-button-item {
  display: block;
  background-image: url(../img/cook_btn_bg.png);
  background-size: cover;
  padding: 1.2rem 0;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  color: #646454;
  -webkit-box-shadow: 0px 3px 1px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 3px 1px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: ease-in 0.1s all;
  transition: ease-in 0.1s all;
}

.cook--recipe-button-item:hover {
  letter-spacing: 0.1em;
  -webkit-transition: ease-in 0.2s all;
  transition: ease-in 0.2s all;
}

@media screen and (min-width: 700px) {
  .cook--recipe {
    padding: 16rem 0 5rem;
  }
  .cook--recipe .ly-content-area {
    max-width: 79.6rem;
    width: 90%;
  }
  .cook--recipe::before {
    content: "";
    width: 30%;
    max-width: 54.8rem;
    max-height: 40.2rem;
    background-image: url(../img/cook_intro_decoration_c.png);
    top: -7rem;
    right: 0;
  }
  .cook--recipe-title {
    max-width: inherit;
  }
  .cook--recipe-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 0rem;
    width: 100%;
  }
  .cook--recipe-button li {
    width: 30%;
  }
  .cook--recipe-button a {
    padding: 1.8rem 0;
  }
}

.cook--recipe02 {
  background-color: rgba(247, 247, 247, 0.4);
  padding: 2rem 10% 9rem;
}

.cook--recipe02-list-item {
  margin-bottom: 4rem;
}

.cook--recipe02-list-item-contents {
  background-color: #f0eee8;
  padding: 18.6vw 16% 6rem;
  margin-top: -18.6vw;
}

.cook--recipe02-list-item-contents-title {
  margin-bottom: 1.2rem;
}

.cook--recipe02-list-item-contents-recipe {
  text-align: left;
  text-align: justify;
}

.cook--recipe02-list-item-contents-recipe-item {
  margin-bottom: 5rem;
}

.cook--recipe02-list-item-contents-recipe-item-title {
  margin-bottom: 1.2rem;
}

.cook--recipe02-list-item-contents-recipe-item-text-sub {
  padding-top: 2rem;
}

.cook--recipe02-list-item-contents-recipe-howto {
  text-align: left;
  text-align: justify;
}

.cook--recipe02-list-item-contents-recipe-howto-title {
  margin-bottom: 1.2rem;
}

.cook--recipe02-list-item-contents-recipe-howto-text {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cook--recipe02-list-item-contents-recipe-howto-text li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.cook--recipe02-list-item-contents-recipe-howto-text li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #333;
  border: 1px solid;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.3rem;
  width: 1.3rem;
  color: #ffffff;
  font-size: 50%;
  line-height: 1;
  position: absolute;
  top: 0.65rem;
  left: 0;
}

@media screen and (min-width: 700px) {
  .cook--recipe02 {
    padding: 2rem 0 9rem;
  }
  .cook--recipe02-list {
    width: 90%;
    max-width: 79.6rem;
    margin: 0 auto;
  }
  .cook--recipe02-list-item-contents {
    margin-top: -13.5vw;
    padding: 9.5vw 5% 6rem;
  }
  .cook--recipe02-list-item-contents-title {
    margin-bottom: 1.6rem;
  }
  .cook--recipe02-list-item-contents-recipe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cook--recipe02-list-item-contents-recipe-item {
    width: 50%;
    padding-left: 1rem;
    padding-right: 2rem;
    border-right: 1px solid #666666;
    margin-bottom: 0;
  }
  .cook--recipe02-list-item-contents-recipe-howto {
    width: 50%;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}

@media screen and (min-width: 1074px) {
  .cook--recipe02-list-item-contents {
    margin-top: -12rem;
    padding-top: 8rem;
  }
}

.access {
  padding-bottom: 7.2rem;
  background-image: url(../img/line_dotted_blue.png), url(../img/line_stripe_blue.png);
  background-repeat: repeat-x ,repeat-x;
  background-position: center bottom 1rem,center top;
}

.access--title {
  padding: 5rem 10% 0;
}

.access--title-img {
  max-width: 32rem;
  margin: 0 auto;
}

@media screen and (min-width: 700px) {
  .access--title {
    padding: 5rem 0 0;
  }
  .access--title .ly-content-area {
    max-width: 107.4rem;
  }
  .access--title-img {
    max-width: inherit;
  }
}

.access--contents {
  padding: 0 10%;
}

.access--contents-map {
  width: 100%;
  height: 30rem;
}

.access--contents-map iframe {
  width: 100%;
  height: 100%;
}

.access--contents-info-text01 {
  color: #cd4a2c;
  text-align: left;
  text-align: justify;
  list-style: square;
  padding: 3rem 0 3rem 2em;
}

.access--contents-info-text01 a {
  position: relative;
  color: #cd4a2c;
  text-decoration: none;
  border-bottom: 1px dotted #cd4a2c;
  padding-bottom: 2px;
}

.access--contents-info-text01 a:hover {
  opacity: 0.7;
}

.access--contents-info-text02 {
  text-align: left;
  text-align: justify;
}

.access--contents-info-text02-place {
  padding-bottom: 1.6rem;
}

.access--contents-info-text02-place-plan {
  padding-left: 2em;
  line-height: 1.8;
}

@media screen and (min-width: 700px) {
  .access--contents {
    padding: 0;
    padding-top: 2rem;
  }
  .access--contents .ly-content-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 90%;
    max-width: 107.4rem;
  }
  .access--contents-map {
    width: 50%;
    padding-right: 2rem;
  }
  .access--contents-map iframe {
    width: 100%;
    height: 47.9rem;
  }
  .access--contents-info {
    width: 50%;
    padding-left: 2rem;
  }
  .access--contents-info-text01 {
    padding-top: 0;
  }
}

.footer--bg {
  width: 100vw;
  height: 40rem;
  background-image: url(../img/line_stripe_blue.png), url(../img/footer_bg.jpg);
  background-size: auto,cover;
  background-repeat: repeat-x,no-repeat;
  background-position: center bottom ,center center;
}

.footer--policy .ly-content-area {
  padding: 6rem 10% 2rem;
  font-size: 0.75rem;
  text-align: left;
}

.footer--policy .ly-content-area a {
  position: relative;
  color: #3c3c3c;
  text-decoration: none;
  border-bottom: 1px dotted #3c3c3c;
  padding-bottom: 2px;
}

.footer--policy .ly-content-area a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 700px) {
  .footer--policy .ly-content-area {
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
  }
}

.footer--cap .ly-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 7.4rem;
  color: #cd4a2c;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}
/*# sourceMappingURL=style.css.map */