@charset "UTF-8";
/* ==========================================================================
    Foundation
========================================================================== */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 0;
  min-width: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html, body {
  width: 100%;
  height: 100%;
}

html {
  font-size: 62.5%;
}

img {
  vertical-align: bottom;
}

input {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

select {
  border: none;
  outline: none;
  background: transparent;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

textarea {
  padding: 0;
  border: 0;
  outline: none;
  resize: none;
  background: transparent;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

button {
  padding: 0;
  border: none;
  cursor: pointer;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* 初期設定 */
#wrapper {
  width: 100%;
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
}

/*----------------------------------
  Base
------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
}

.main {
  position: relative;
  z-index: 1;
  background: #5e0812;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* セクションタイトル */
.section_ttl {
  position: relative;
  text-align: center;
  display: block;
  font-size: calc(2rem + 2vw);
  margin: 0 auto;
}
.section_ttl::before {
  content: attr(data-en);
  position: absolute;
  top: -40%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: rgba(252, 155, 131, 0.2);
  font-size: 1.95em;
  white-space: nowrap;
  font-family: shelby, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.section_ttl::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  -webkit-transform: translate(-50%) rotate(30deg);
          transform: translate(-50%) rotate(30deg);
  width: 1px;
  height: 26px;
  background-color: #fc9b83;
}
.section_ttl span {
  position: relative;
  z-index: 2;
}

.section_sub_ttl {
  text-align: center;
  display: block;
  font-size: calc(2rem + 1.5vw);
  margin: 0 auto;
}

p {
  font-size: 1.6rem;
  line-height: 2;
  color: #fff;
}

ul,
ol {
  list-style: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

iframe {
  width: 100%;
}

.base_w {
  width: 85%;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .base_w {
    width: 94%;
  }
}

.fadeIn {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}

.fadeIn.animated {
  opacity: 1;
}

.pc_hid {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc_hid {
    display: block;
  }
}

.sp_hid {
  display: block;
}
@media screen and (max-width: 767px) {
  .sp_hid {
    display: none;
  }
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*ーーーーーーーーーー
.main-header
ーーーーーーーーーーー*/
.header-container .fixed {
  position: fixed;
  /*fixedを設定して固定*/
  z-index: 99;
  /*最前面へ*/
  top: 0;
  /*位置指定*/
  left: 0;
  /*位置指定*/
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 1em 2em;
  height: 120px;
  z-index: 99;
  /*最前面へ*/
  background: #d38a5d;
}
.main-header > .header-logo {
  width: 20%;
  max-width: 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .main-header > .header-logo {
    width: 30%;
  }
}

.tel > a {
  color: #000;
  font-size: calc(1.5rem + 1.25vw);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .tel > a {
    font-size: 18px;
  }
}

@media (min-width: 751px) {
  a[href*='tel:'] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.business_hour {
  color: #000;
  font-size: calc(1rem + 0.5vw);
}

.gnav-menu {
  width: 100%;
}

.gnav-container {
  width: 100%;
  background: rgba(94, 8, 18, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: fixed;
  top: 120px;
  left: 0;
  z-index: 99;
  /*最前面へ*/
}
.gnav-container > .item {
  position: relative;
  display: inline-block;
  width: calc(100% / 4);
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 1em;
  /* 要素の横に縦線 */
}
.gnav-container > .item > a {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  white-space: nowrap;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
.gnav-container > .item > a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 1px;
  background: #818651;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.gnav-container > .item > a:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.gnav-container > .item::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 30px;
  background: #fff;
  position: absolute;
  top: 25%;
  right: 0%;
}
.gnav-container > .item:last-child::after {
  content: '';
  display: none;
}

@media (max-width: 767px) {
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 0 1em;
    height: 100px;
  }

  .header-container {
    top: 0;
  }

  .gnav-container {
    top: 100px;
  }
  .gnav-container > .item {
    text-align: center;
    width: 100%;
  }
  .gnav-container > .item > a {
    margin: 0;
  }
}
/*============================
.first view
============================*/
/* 全画面表示CSS */
.hero {
  height: 100vh;
  /* 全画面表示 */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../img/main_img.jpg);
}

/* 黒の背景 */
.overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, 0.4);
}

/* テキスト */
.text-box {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 92%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .text-box {
    top: 65%;
  }
}

.main-copy {
  color: #fff;
  /*Google Font*/
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(3.25rem + 1vw);
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 575px) {
  .main-copy {
    font-size: 2.05rem;
  }
}

.sub-copy {
  font-size: calc(1.25rem + 0.5vw);
  color: white;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .sub-copy {
    font-size: 1.5rem;
  }
}

/*============================
info
============================*/
.info-container {
  padding: 160px 0 0 0;
}
@media screen and (max-width: 767px) {
  .info-container {
    padding: 80px 0 0 0;
  }
}

.info_img {
  width: 40%;
  margin: 20px auto;
}
@media screen and (max-width: 767px) {
  .info_img {
    width: 80%;
  }
}

/*============================
about
============================*/
.about-container {
  padding: 160px 0 0 0;
}
@media screen and (max-width: 767px) {
  .about-container {
    padding: 80px 0 0 0;
  }
}

.about_list {
  padding: 60px 0 0 0;
}

.about_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 100px;
}
.about_item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .about_item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .about_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about_img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .about_img {
    width: 90%;
    margin: 0 auto 20px;
  }
}

.about_txt {
  width: 55%;
  padding: 0 3.5em;
}
.about_txt > .ttl {
  font-size: calc(1.5rem + 1vw);
  margin: 0 0 2em 0;
}
@media screen and (max-width: 575px) {
  .about_txt > .ttl {
    font-size: 1.65rem;
  }
}
@media screen and (max-width: 767px) {
  .about_txt {
    width: 100%;
    padding: 0 2em;
  }
}

/*マーカーアニメーション*/
.Text-Span {
  position: relative;
  z-index: 1;
}
.Text-Span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0%;
  height: 4px;
  background: #ddd;
  z-index: -1;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.Text-Span.isActive::after {
  width: 100%;
}

/*============================
お店の風景
============================*/
.gallery-container {
  padding: 160px 0;
}
@media screen and (max-width: 767px) {
  .gallery-container {
    padding: 60px 0 0 0;
  }
}

/*--------------------
  スライダー（swiper）
----------------------*/
.swiper {
  margin: 60px 0 0 0;
  max-width: 1200px;
}

.swiper--wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: 300px;
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  color: #fff;
  width: 100%;
  height: 100%;
  text-align: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.fa-arrow-circle-left,
.fa-arrow-circle-right {
  color: #fff;
}

/*============================
料金システム・メニュー
============================*/
.menu-container {
  padding: 160px 0 0 0;
}
@media screen and (max-width: 767px) {
  .menu-container {
    padding: 80px 0 0 0;
  }
}

/*--------------------
  料金システム
----------------------*/
.system_desc {
  padding: 50px 0 100px 0;
  text-align: center;
  /*親div*/
  position: relative;
  /*相対配置*/
}
.system_desc > .img {
  margin: 0 auto;
  width: 48%;
}
@media screen and (max-width: 767px) {
  .system_desc > .img {
    width: 90%;
  }
}
.system_desc > .txt {
  position: absolute;
  top: 43%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  font-size: calc(1.65rem + 0.25vw);
  text-align: center;
  width: 80%;
  /* グラスのアイコン */
}
.system_desc > .txt > .add {
  display: inline-block;
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 24px;
}
.system_desc > .txt::before {
  content: url(../img/icon_glass.png);
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  padding-right: 5px;
}

/* 価格 */
.price {
  display: inline-block;
}
.price::after {
  content: '円';
  font-size: 0.8em;
  padding: 0 0 0 0.25em;
}

/* 価格（色付き）*/
.price_line {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #cf8d1b));
  background: linear-gradient(transparent 95%, #cf8d1b 95%);
}
.price_line::after {
  content: '円';
  font-size: 0.8em;
  padding: 0 0 0 0.25em;
}

/*--------------------
  ボトルキープ
----------------------*/
.menu_list {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .menu_list {
    padding: 30px 0;
  }
}

.menu_item {
  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;
}
@media screen and (max-width: 767px) {
  .menu_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.menu_item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin: 100px 0 0 0;
}
@media screen and (max-width: 767px) {
  .menu_item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 50px 0 0 0;
  }
}

.menu_img {
  position: relative;
  width: 45%;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .menu_img {
    width: 70%;
  }
}
.menu_img.shochu > img {
  -webkit-box-shadow: -25px 25px #cf8d1b;
          box-shadow: -25px 25px #cf8d1b;
}
.menu_img.whisky > img {
  -webkit-box-shadow: 25px 25px #cf8d1b;
          box-shadow: 25px 25px #cf8d1b;
}
.menu_img > p {
  position: absolute;
  top: 6%;
  left: 6%;
  line-height: 1.35;
  color: #fff;
  /*文字は白に*/
  font-weight: bold;
  /*太字に*/
  font-size: 3rem;
  /*サイズ2倍*/
  /*Google Font*/
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
}

.menu_txt {
  width: 45%;
  max-width: 600px;
  padding: 1em 2em;
}
@media screen and (max-width: 767px) {
  .menu_txt {
    width: 100%;
    margin: 56px auto;
    padding: 1em;
  }
}

.price_list > .item {
  margin: 1em 0;
  border-bottom: 1px dotted #fff;
  padding: 0 0 1em 0;
}

.price_flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 600px;
}
.price_flx > p {
  font-size: 1.85rem;
  line-height: 2.25;
}

.service__price {
  color: #ce3737;
  font-weight: 500;
  font-size: 1.35rem;
}

/*--------------------
  ショット・フード
----------------------*/
.menu_item_02 {
  padding: 60px 0;
  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;
}
@media screen and (max-width: 767px) {
  .menu_item_02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.menu_img_02 {
  width: 48%;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .menu_img_02 {
    width: 60%;
  }
}
.menu_img_02 > img {
  -webkit-box-shadow: -25px -25px #cf8d1b;
          box-shadow: -25px -25px #cf8d1b;
}

.menu_txt_02 {
  width: 48%;
  max-width: 600px;
  padding: 1em 2em;
}
@media screen and (max-width: 767px) {
  .menu_txt_02 {
    width: 100%;
    margin: 56px auto;
  }
}

/*============================
店舗情報・アクセス
============================*/
.access-container {
  padding: 160px 0;
}
@media screen and (max-width: 767px) {
  .access-container {
    padding: 60px 0;
  }
}

.access_flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 60px 0 0 0;
}
@media screen and (max-width: 767px) {
  .access_flx {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.access_img {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .access_img {
    width: 84%;
    margin: 0 auto 20px;
  }
}

.access_txt {
  width: 48%;
}
.access_txt > .txt {
  margin-bottom: 20px;
}
.access_txt > .txt > span {
  display: block;
  font-size: 0.9em;
}
@media screen and (max-width: 767px) {
  .access_txt {
    width: 98%;
    margin: 0 auto;
  }
}

.container {
  margin: 0 auto;
}

.main-img {
  height: auto;
  width: 100%;
}
.main-img > img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .main-img {
    height: auto;
  }
}

.sub-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
.sub-img > li {
  margin-right: 2%;
  width: calc(96% / 4);
  /* アクティブな画像の枠線を変更 */
}
.sub-img > li:nth-child(4n) {
  margin-right: 0;
}
.sub-img > li > img {
  border: 2px solid transparent;
  -webkit-transition: border 0.5s;
  transition: border 0.5s;
}
.sub-img > li.current > img {
  border: 2px solid #ce3737;
  -webkit-transition: border 0.5s;
  transition: border 0.5s;
}
.sub-img > img {
  cursor: pointer;
  width: 100%;
}

/* map */
.access_map {
  width: 50%;
  max-width: 600px;
  margin: 100px auto 0;
}
@media screen and (max-width: 767px) {
  .access_map {
    width: 90%;
    margin: 50px auto 0;
  }
}

/* ---------------------------- */
/* footer
/* ---------------------------- */
.footer {
  position: relative;
  width: auto;
  height: auto;
  padding: 2em 0;
  background: #000;
}
.footer > .copyright {
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .footer > .copyright {
    font-size: 1.2rem;
  }
}

/*--------------------
  ページトップ
----------------------*/
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 30px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }
}
/*画像の切り替えと動き*/
#page-top a {
  /*aタグの形状*/
  display: block;
  width: 100px;
  height: 100px;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  /*背景画像の指定*/
  background: url("../img/dance.png") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  #page-top a {
    width: 80px;
    height: 80px;
  }
}

@-webkit-keyframes floatAnime {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: translateX(-6px);
            transform: translateX(-6px);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
    opacity: 1;
  }
}

@keyframes floatAnime {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: translateX(-6px);
            transform: translateX(-6px);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
    opacity: 1;
  }
}
/*Page Topと書かれたテキストの位置*/
#page-top span {
  position: absolute;
  bottom: -20px;
  right: 20px;
  color: #fff;
}

/*--------------------
  年末年始 バナー
----------------------*/
.newyear_banner {
  width: 50%;
  margin: 0 auto;
  padding: 80px 0 0 0;
}
@media screen and (max-width: 767px) {
  .newyear_banner {
    width: 86%;
  }
}

/*# sourceMappingURL=style.css.map */