body {
  overflow-y: scroll;
}

header {
  position: relative;
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  z-index: 555;
  position: fixed;
  padding: 0;
  top: 0px;
}
@media screen and (max-width: 640px) {
  header {
    display: block;
    height: 58px;
    padding: 3px 5px;
  }
}
header .cont_area {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: -webkit- space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: -webkit- center;
  align-items: center;
}
header.fx {
  display: block;
}

@media screen and (max-width: 768px) {
  .logo {
    max-width: 280px;
  }
}
@media screen and (max-width: 640px) {
  .logo {
    display: none;
  }
}

.phone {
  position: relative;
  z-index: 58;
  display: none;
}
@media screen and (max-width: 640px) {
  .phone {
    display: block;
  }
  .phone a {
    display: flex;
    font-size: 10px;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
  }
  .phone a:before {
    content: '';
    width: 32px;
    height: 32px;
    display: inline-block;
    background: url("../img/icn_phone.png") no-repeat center center/100% auto;
    margin-right: 10px;
  }
}

.menu {
  display: flex;
}
.menu > li {
  padding: 5px 20px 10px;
  cursor: pointer;
  opacity: 1;
  transition: .4s;
}
@media screen and (max-width: 640px) {
  .menu > li {
    display: none;
    margin-left: -30px;
  }
}
.menu > li img {
  max-height: 18px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .menu > li img {
    max-height: 25px;
  }
}
@media screen and (max-width: 640px) {
  .menu > li img {
    max-height: 23px;
  }
}
@media screen and (max-width: 768px) {
  .menu > li {
    padding: 5px 10px 10px;
  }
}
.menu > li:hover {
  opacity: .6;
  transition: .4s;
}
.menu > li:last-child {
  padding: 5px 0px 10px 20px;
}
.menu > li.active {
  opacity: 0.5;
}
@media screen and (max-width: 640px) {
  .menu > li.active {
    display: block !important;
    opacity: 1;
  }
}
@media screen and (max-width: 640px) {
  .menu > li.sns {
    margin-left: -50px;
  }
  .menu > li.sns img {
    max-height: 25px;
    height: 25px;
    width: auto;
  }
}

.menu_btn {
  display: none;
}
@media screen and (max-width: 640px) {
  .menu_btn {
    cursor: pointer;
    position: relative;
    display: block;
    z-index: 55;
    margin-top: 5px;
    width: 42px;
    height: 42px;
    background: url("../img/sp_menu_c.png") no-repeat center center/100% auto;
  }
  .menu_btn.active {
    background: url("../img/sp_menu_o.png") no-repeat center center/100% auto;
  }
}

.sp_nav {
  display: none;
  z-index: 40;
}
@media screen and (max-width: 640px) {
  .sp_nav {
    padding: 70px 8% 30px;
    right: 0px;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
  }
  .sp_nav > li {
    border-bottom: #ffffff 1px solid;
  }
  .sp_nav > li a {
    display: block;
    width: 100%;
    padding: 10px 15px;
  }
  .sp_nav > li a img {
    max-height: 30px;
    width: auto;
  }
}

.wrapper {
  position: relative;
}
@media screen and (max-width: 640px) {
  .wrapper {
    height: 100vh;
    height: -webkit-fill-available;
    overflow-y: visible;
    scroll-snap-type: y mandatory;
  }
}

.section {
  position: relative;
  height: 100vh;
  will-change: transform;
}
@media screen and (max-width: 640px) {
  .section {
    height: inherit;
  }
}

#top {
  position: relative;
  z-index: 28;
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
  animation: fadeIn 1.5s ease 0s 1 normal;
}
@media screen and (max-width: 640px) {
  #top {
    scroll-snap-align: start;
    height: 100vh;
    overflow-y: auto;
  }
}
#top .cont_area {
  position: relative;
  z-index: 40;
  padding-top: 50px;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: -webkit- space-between;
  justify-content: space-between;
}
#top .cont_area .ctc_box .ph_txt {
  color: #ffffff;
  font-family: 'Noto Sans JP', sans-serif;
}
#top .cont_area .ctc_box .ph_no {
  display: flex;
  -webkit-align-items: center;
  align-items: -webkit- center;
  align-items: center;
}
#top .cont_area .ctc_box .ph_no:before {
  display: inline-block;
  content: '';
  width: 50px;
  height: 50px;
  background: url("../img/icn_phone_w.png") no-repeat left center/100% auto;
  margin: 0 -10px;
}
@media screen and (max-width: 768px) {
  #top .cont_area .ctc_box {
    max-width: 300px;
  }
}
@media screen and (max-width: 640px) {
  #top .cont_area .ctc_box {
    display: none;
  }
}
#top .cont_area h1 {
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 100%;
  max-width: 160px;
}
@media screen and (max-width: 768px) {
  #top .cont_area h1 {
    max-width: 130px;
    top: 300px;
  }
}
@media screen and (max-width: 640px) {
  #top .cont_area h1 {
    max-width: 110px;
    top: 100px;
  }
}
#top .cont_area .top_menu {
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: -webkit- flex-end;
  justify-content: flex-end;
  margin: 0 0 0 auto;
}
#top .cont_area .top_menu > li {
  max-width: 40px;
  margin: 0 3px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
#top .cont_area .top_menu > li:hover {
  opacity: 0.7;
}
#top .cont_area .top_menu > li.sns {
  padding-top: 3px;
  padding-left: 5px;
}
@media screen and (max-width: 640px) {
  #top .cont_area .top_menu {
    display: none;
  }
}
#top .slide_top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0;
  height: 100vh;
  min-height: 100vh;
  background: url("../img/slide/top_slide1.jpg") no-repeat center top/cover;
}
@media screen and (max-width: 640px) {
  #top .slide_top {
    background: url("../img/slide/top_slide1_sp.jpg") no-repeat center top/cover;
  }
}
#top .slide_top .slick-slide {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
#top .slide_top .slick-slide img {
  width: 100%;
  height: 100%;
  display: inline-block;
}
@media screen and (max-width: 640px) {
  #top .slide_top .slick-slide {
    object-fit: cover;
    overflow: visible;
  }
}
#top .slide_top .slick-slide.slide1 {
  background-image: url("../img/slide/top_slide1.jpg");
}
@media screen and (max-width: 640px) {
  #top .slide_top .slick-slide.slide1 {
    background-image: url("../img/slide/top_slide1_sp.jpg");
  }
}
#top .slide_top .slick-slide.slide2 {
  background-image: url("../img/slide/top_slide2.jpg");
}
@media screen and (max-width: 640px) {
  #top .slide_top .slick-slide.slide2 {
    background-image: url("../img/slide/top_slide2_sp.jpg");
  }
}
#top .slide_top .slick-slide.slide3 {
  background-image: url("../img/slide/top_slide3.jpg");
}
@media screen and (max-width: 640px) {
  #top .slide_top .slick-slide.slide3 {
    background-image: url("../img/slide/top_slide3_sp.jpg");
  }
}
#top .slide_top .slick-slide.slide4 {
  background-image: url("../img/slide/top_slide4.jpg");
}
@media screen and (max-width: 640px) {
  #top .slide_top .slick-slide.slide4 {
    background-image: url("../img/slide/top_slide4_sp.jpg");
  }
}
#top .slide_top .slick-slide.slide5 {
  background-image: url("../img/slide/top_slide5.jpg");
}
@media screen and (max-width: 640px) {
  #top .slide_top .slick-slide.slide5 {
    background-image: url("../img/slide/top_slide5_sp.jpg");
  }
}
#top .slide_top .slick-slide.slide6 {
  background-image: url("../img/slide/top_slide6.jpg");
}
@media screen and (max-width: 640px) {
  #top .slide_top .slick-slide.slide6 {
    background-image: url("../img/slide/top_slide6_sp.jpg");
  }
}
#top .next {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
  #top .next {
    bottom: 120px;
  }
}
#top .next a {
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 25px;
  opacity: 0.5;
}
#top .next a:hover {
  opacity: 1;
}

#greeting {
  position: relative;
  z-index: 30;
  background: url("../img/greeting_bg.jpg") no-repeat center top/cover;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 640px) {
  #greeting {
    background: url("../img/greeting_bg_sp.jpg") no-repeat center center/cover;
    scroll-snap-align: start;
    height: 100vh;
    overflow-y: auto;
  }
}
#greeting .cont_area {
  padding-top: 90px;
}
@media screen and (max-width: 640px) {
  #greeting .cont_area {
    padding-top: 30px;
    margin-top: 50vh;
    height: calc(50vh - 30px);
  }
}
#greeting .cont_area .lead_copy {
  color: #ffffff;
  width: 100%;
  max-width: 330px;
  margin: 0 0 0 auto;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: -webkit- flex-end;
  justify-content: flex-end;
  line-height: 2;
  font-size: 15px;
}
@media screen and (max-width: 640px) {
  #greeting .cont_area .lead_copy {
    color: #000000;
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.9;
  }
}

#creed {
  position: relative;
  z-index: 32;
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
  animation: fadeIn 1.5s ease 0s 1 normal;
  background: url("../img/creed_bg.jpg") no-repeat center center/cover;
}
@media screen and (max-width: 640px) {
  #creed {
    background: url("../img/creed_bg_sp.jpg") no-repeat center center/cover;
    scroll-snap-align: start;
    height: 100vh;
    overflow-y: auto;
  }
}
#creed .cont_area {
  padding-top: 90px;
}
@media screen and (max-width: 640px) {
  #creed .cont_area {
    padding-top: 30px;
    margin-top: 50vh;
    height: calc(50vh - 30px);
  }
}
#creed .cont_area .lead_copy {
  width: 100%;
  max-width: 330px;
  margin: 0 0 0 auto;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: -webkit- flex-end;
  justify-content: flex-end;
  line-height: 2;
  font-size: 15px;
}
@media screen and (max-width: 640px) {
  #creed .cont_area .lead_copy {
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.9;
  }
}

#recommend {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 640px) {
  #recommend {
    scroll-snap-align: start;
    height: 100vh;
    overflow-y: auto;
  }
}
#recommend .cont_area {
  position: relative;
  padding-top: 90px;
}
@media screen and (max-width: 640px) {
  #recommend .cont_area {
    padding-top: 30px;
    margin-top: calc(50vh - 10px);
    height: calc(50vh - 30px);
  }
}
#recommend .cont_area .lead_copy {
  position: relative;
  z-index: 80;
  width: 100%;
  max-width: 330px;
  margin: 0 0 0 auto;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: -webkit- flex-end;
  justify-content: flex-end;
  line-height: 2;
  font-size: 15px;
}
@media screen and (max-width: 640px) {
  #recommend .cont_area .lead_copy {
    z-index: 28;
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.9;
  }
}
#recommend .recomm_slide {
  z-index: 30;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0;
  height: 100vh;
}
#recommend .recomm_slide li.slick-slide {
  object-fit: cover;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
#recommend .recomm_slide li.slick-slide img {
  min-height: 675px;
  display: inline-block;
}
@media screen and (min-width: 1220px) {
  #recommend .recomm_slide li.slick-slide {
    background-size: 100% auto;
  }
  #recommend .recomm_slide li.slick-slide img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 640px) {
  #recommend .recomm_slide li.slick-slide {
    background-size: cover;
    background-position: center bottom;
    height: 50vh;
  }
  #recommend .recomm_slide li.slick-slide img {
    min-height: 100px;
  }
}
#recommend .recomm_slide li.slick-slide.slide01 {
  background-image: url("../img/recommend/osusume_01.jpg");
}
#recommend .recomm_slide li.slick-slide.slide02 {
  background-image: url("../img/recommend/osusume_02.jpg");
}
#recommend .recomm_slide li.slick-slide.slide03 {
  background-image: url("../img/recommend/osusume_03.jpg");
}
#recommend .recomm_slide li.slick-slide.slide04 {
  background-image: url("../img/recommend/osusume_04.jpg");
}
#recommend .recomm_slide li.slick-slide.slide05 {
  background-image: url("../img/recommend/osusume_05.jpg");
}
#recommend .recomm_slide li.slick-slide.slide06 {
  background-image: url("../img/recommend/osusume_06.jpg");
}
#recommend .recomm_slide li.slick-slide.slide07 {
  background-image: url("../img/recommend/osusume_07.jpg");
}
#recommend .recomm_slide li.slick-slide.slide08 {
  background-image: url("../img/recommend/osusume_08.jpg");
}
#recommend .recomm_slide li.slick-slide.slide09 {
  background-image: url("../img/recommend/osusume_09.jpg");
}
#recommend .recomm_slide li.slick-slide.slide10 {
  background-image: url("../img/recommend/osusume_10.jpg");
}
#recommend .recomm_slide li.slick-slide.slide11 {
  background-image: url("../img/recommend/osusume_11.jpg");
}
#recommend .recomm_slide li.slick-slide.slide12 {
  background-image: url("../img/recommend/osusume_12.jpg");
}
#recommend .recomm_slide li.slick-slide.slide13 {
  background-image: url("../img/recommend/osusume_13.jpg");
}

#omakase {
  position: relative;
  z-index: 32;
  background: url("../img/omakase_bg.jpg") no-repeat center center/cover;
}
@media screen and (max-width: 640px) {
  #omakase {
    background: url("../img/omakase_bg_sp.jpg") no-repeat center center/cover;
    scroll-snap-align: start;
    height: 100vh;
    overflow-y: auto;
  }
}
#omakase .cont_area {
  padding-top: 90px;
}
@media screen and (max-width: 640px) {
  #omakase .cont_area {
    padding-top: 30px;
    margin-top: 50vh;
    height: calc(50vh - 30px);
  }
}
#omakase .cont_area .lead_copy {
  width: 100%;
  max-width: 330px;
  margin: 0 0 0 auto;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: -webkit- flex-end;
  justify-content: flex-end;
  line-height: 2;
  font-size: 15px;
}
@media screen and (max-width: 640px) {
  #omakase .cont_area .lead_copy {
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.9;
  }
}

#takeout {
  position: relative;
  height: auto;
}
@media screen and (max-width: 640px) {
  #takeout {
    scroll-snap-align: start;
    height: 100vh;
    overflow-y: auto;
  }
}
#takeout .inner {
  position: relative;
  padding-top: 90px;
}
@media screen and (max-width: 640px) {
  #takeout .inner {
    padding: 90px 0 90px;
  }
}
#takeout .inner .takeout_slide {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  #takeout .inner .takeout_slide {
    width: 85%;
  }
}
#takeout .inner .takeout_slide:before {
  position: absolute;
  z-index: 22;
  top: 0;
  left: 0;
  width: 70px;
  height: 100%;
  content: '';
  background-color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 640px) {
  #takeout .inner .takeout_slide:before {
    width: 50px;
    height: 100px;
    top: 115px;
    left: -20px;
    background-color: rgba(255, 255, 255, 0);
  }
}
#takeout .inner .takeout_slide:after {
  position: absolute;
  z-index: 23;
  top: 0;
  right: 0;
  width: 70px;
  height: 100%;
  content: '';
  background-color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 640px) {
  #takeout .inner .takeout_slide:after {
    width: 50px;
    height: 100px;
    top: 115px;
    right: -20px;
    background-color: rgba(255, 255, 255, 0);
  }
}
#takeout .inner .takeout_slide li.slick-slide {
  margin: 0 20px;
  max-width: 360px;
}
#takeout .inner .takeout_slide li.slick-slide figure {
  max-width: 360px;
}
@media screen and (max-width: 640px) {
  #takeout .inner .takeout_slide li.slick-slide {
    max-width: 100%;
  }
  #takeout .inner .takeout_slide li.slick-slide figure {
    display: block;
    cursor: pointer;
  }
}
#takeout .inner .takeout_slide li.slick-slide .ttl {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}
@media screen and (max-width: 640px) {
  #takeout .inner .takeout_slide li.slick-slide .ttl {
    font-size: 14px;
  }
}
#takeout .inner .takeout_slide li.slick-slide .price {
  display: table;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #takeout .inner .takeout_slide li.slick-slide .price {
    margin: 10px auto;
  }
}
#takeout .inner .takeout_slide li.slick-slide .price.em6 > li em {
  min-width: 6em;
}
#takeout .inner .takeout_slide li.slick-slide .price.em7 > li em {
  min-width: 7em;
}
#takeout .inner .takeout_slide li.slick-slide .price.em9 > li em {
  min-width: 9em;
}
#takeout .inner .takeout_slide li.slick-slide .price > li {
  display: flex;
  font-size: 16px;
  word-wrap: break-word;
  word-break: break-all;
}
@media screen and (max-width: 640px) {
  #takeout .inner .takeout_slide li.slick-slide .price > li {
    font-size: 13px;
    line-height: 1.4;
  }
}
#takeout .inner .takeout_slide li.slick-slide .price > li em {
  display: inline-block;
  margin-right: 30px;
  min-width: 2em;
}
#takeout .inner .contact_box {
  width: 100%;
  max-width: 600px;
  margin: 20px auto 50px;
}
@media screen and (max-width: 768px) {
  #takeout .inner .contact_box {
    max-width: 400px;
  }
}
@media screen and (max-width: 640px) {
  #takeout .inner .contact_box {
    margin: 30px auto 30px;
    width: 90%;
  }
}
#takeout .inner .contact_box .demae_note {
  width: 100%;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: -webkit- space-between;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  #takeout .inner .contact_box .demae_note {
    padding-bottom: 5px;
    width: 90%;
    margin: 0 auto;
  }
}
#takeout .inner .contact_box .demae_note .demae_disc {
  font-size: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  #takeout .inner .contact_box .demae_note .demae_disc {
    font-size: 11px;
  }
}
#takeout .inner .contact_box .demae_note .demae_tax {
  font-size: 12px;
}
@media screen and (max-width: 640px) {
  #takeout .inner .contact_box .demae_note .demae_tax {
    font-size: 11px;
  }
}
@media screen and (max-width: 640px) {
  #takeout .inner .contact_box .demae_tag {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}

#aboutus {
  position: relative;
  clear: both;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  #aboutus {
    height: 100vh;
  }
}
@media screen and (max-width: 640px) {
  #aboutus {
    scroll-snap-align: start;
    height: 100vh;
    overflow-y: auto;
  }
}
#aboutus .cont_area {
  padding: 90px 0;
  position: relative;
}
@media screen and (max-width: 640px) {
  #aboutus .cont_area {
    width: 100%;
    display: block;
    padding: 90px 0 90px;
  }
}
#aboutus .cont_area .shop_info {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: -webkit- space-between;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  #aboutus .cont_area .shop_info {
    display: block;
    width: 94%;
  }
}
#aboutus .cont_area .shop_info .img {
  max-width: 315px;
  width: 32%;
}
@media screen and (max-width: 640px) {
  #aboutus .cont_area .shop_info .img {
    max-width: 100%;
    width: 100%;
    margin-bottom: 10px;
  }
}
#aboutus .cont_area .shop_info .shop_outline {
  max-width: 650px;
  width: 65%;
}
@media screen and (max-width: 640px) {
  #aboutus .cont_area .shop_info .shop_outline {
    width: 100%;
  }
}
#aboutus .cont_area .shop_info .shop_outline .shop_name {
  border-bottom: #000000 1px solid;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
#aboutus .cont_area .shop_info .shop_outline .shop_name .kinzushi {
  max-width: 183px;
  margin-bottom: 10px;
}
#aboutus .cont_area .shop_info .shop_outline .shop_name .ctc_box .ph_txt {
  display: flex;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
}
@media screen and (max-width: 640px) {
  #aboutus .cont_area .shop_info .shop_outline .shop_name .ctc_box .ph_txt {
    font-size: 11px;
  }
}
#aboutus .cont_area .shop_info .shop_outline .shop_name .ctc_box a {
  margin-left: 20px;
  margin-top: -5px;
  max-width: 150px;
}
#aboutus .cont_area .shop_info .shop_outline .shop_dtl {
  margin-bottom: 30px;
}
#aboutus .cont_area .shop_info .shop_outline .shop_dtl dl {
  display: flex;
  line-height: 1.4;
  font-size: 15px;
  margin-bottom: 5px;
}
@media screen and (max-width: 640px) {
  #aboutus .cont_area .shop_info .shop_outline .shop_dtl dl {
    font-size: 12px;
  }
}
#aboutus .cont_area .shop_info .shop_outline .shop_dtl dl .note {
  font-size: 12px;
}
@media screen and (max-width: 640px) {
  #aboutus .cont_area .shop_info .shop_outline .shop_dtl dl .note {
    font-size: 10px;
  }
}
#aboutus .cont_area .shop_info .shop_outline .shop_dtl dl dt {
  display: inline-block;
  margin-right: 30px;
  min-width: 4em;
}
@media screen and (max-width: 640px) {
  #aboutus .cont_area .shop_info .shop_outline .shop_dtl dl dt {
    margin-right: 10px;
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  #aboutus .cont_area .shop_info .shop_outline .shop_dtl dl dd {
    font-size: 12px;
  }
}
#aboutus .map_area {
  position: relative;
  min-height: 400px;
  padding-top: 400px;
}
#aboutus .map_area iframe {
  top: 0;
  position: absolute;
}
@media screen and (max-width: 640px) {
  #aboutus .map_area {
    display: none;
  }
}
#aboutus .map_btn {
  display: none;
}
@media screen and (max-width: 640px) {
  #aboutus .map_btn {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
}

#snsarea {
  clear: both;
  position: relative;
  min-height: 500px;
  height: auto;
}
@media screen and (max-width: 640px) {
  #snsarea {
    scroll-snap-align: start;
  }
}
#snsarea .cont_area {
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 640px) {
  #snsarea .cont_area {
    padding: 60px 0;
  }
}
#snsarea .cont_area .insta_area {
  position: relative;
  width: 100%;
  max-width: 610px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #snsarea .cont_area .insta_area {
    position: relative;
    width: 86%;
    left: 0px;
  }
}
#snsarea .cont_area .insta_area:before {
  left: -200px;
  top: calc(50% - 50px);
  position: absolute;
  content: '';
  width: 100px;
  height: 100px;
  display: block;
  background: url("../img/icn_insta.png") no-repeat center center/100% auto;
}
@media screen and (max-width: 640px) {
  #snsarea .cont_area .insta_area:before {
    position: relative;
    left: calc(50% - 25px);
    top: 20px;
    width: 50px;
    height: 50px;
    margin-bottom: 50px;
  }
}
#snsarea .cont_area .insta_area iframe {
  position: relative;
}
#snsarea .cont_area .more_btn {
  max-width: 220px;
  margin: 40px auto 0;
  width: 100%;
  height: 34px;
  display: table;
  background-color: #ffffff;
  border: #808080 1px solid;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
#snsarea .cont_area .more_btn:hover {
  background-color: #cccccc;
}
#snsarea .cont_area .more_btn a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #4d4d4d;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.5em;
  padding-left: 5px;
}

@media screen and (max-width: 640px) {
  footer {
    scroll-snap-align: start;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
