@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #777777;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

address {
  font-style: normal;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  font-size: 62.5%;
}

@media only screen and (max-width: 1366px) {
  html {
    font-size: 57%;
  }
}

@media only screen and (max-width: 1080px) {
  html {
    font-size: 55%;
  }
}

body {
  font-family: 'Secular One', sans-serif;
  font-size: 1.6em;
  color: #c4b28e;
}

body p {
  line-height: 1.5;
}

h1 {
  font-family: 'Secular One', sans-serif;
  font-size: 4.8rem;
}

h2 {
  font-family: 'Secular One', sans-serif;
  font-size: 3.6rem;
}

.logo_none {
  width: 20%;
  position: fixed;
  z-index: 999;
  display: none;
}

@media only screen and (max-width: 1080px) {
  .logo_none {
    display: block;
  }
}

.logo_none a {
  display: inline-block;
  width: 60%;
  padding: 15% 0 0 15%;
}

.logo_none a img {
  width: 100%;
}

/* ハンバーガー */
.openbtn1 {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: none;
}

.openbtn1 span {
  /*×に変化*/
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 1px;
  border-radius: 1px;
  background-color: #c4b28e;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span {
  background-color: #fff;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media only screen and (max-width: 1080px) {
  #g-nav {
    position: relative;
    display: none;
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: 12;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #860037;
    /*動き*/
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  /*アクティブクラスがついたら透過なしにして最前面へ*/
  #g-nav.panelactive {
    opacity: 0.9;
    z-index: 999;
    display: block;
  }
  /*ナビゲーション*/
  #g-nav nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #g-nav.panelactive ul {
    display: block;
  }
  #g-nav.panelactive .sns {
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 0;
  }
  #g-nav.panelactive .sns li {
    padding: 0 0 10% 0;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  .openbtn1 {
    display: inline-block;
    padding-right: 1rem;
  }
}

@media only screen and (max-width: 560px) {
  #g-nav {
    display: none;
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #dd573e;
    /*動き*/
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  /*アクティブクラスがついたら透過なしにして最前面へ*/
  #g-nav.panelactive {
    opacity: 0.9;
    z-index: 999;
    display: block;
  }
  /*ナビゲーション*/
  #g-nav nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #g-nav.panelactive ul {
    display: block;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  .openbtn1 {
    display: inline-block;
    padding-right: 1rem;
  }
}

/*スクロールダウン全体の場所-----------------------------------------*/
.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 0;
  right: 5%;
  z-index: 999;
}

@media only screen and (max-width: 1080px) {
  .scrolldown2 {
    z-index: 10;
  }
}

/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 40px;
  /*テキストの形状*/
  color: #eee;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@-webkit-keyframes circlemove {
  0% {
    bottom: 60px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 60px;
  }
  100% {
    bottom: -5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 80px;
  background: #eee;
}

header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

header h1 {
  width: 30%;
}

header h1 a {
  padding: 3rem 0 0 8rem;
  width: 40%;
  height: auto;
  display: block;
}

header h1 img {
  width: 100%;
}

header nav {
  width: 40%;
}

header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0 2rem 0 2rem;
}

header nav ul li a {
  color: #fff;
  display: block;
  padding: 3rem 0;
  letter-spacing: 0.1em;
}

header nav ul li a p {
  display: block;
  /* line-height: 8rem; */
  position: relative;
}

header nav ul li a p::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

header nav ul li a p:hover {
  cursor: pointer;
}

header nav ul li a p:hover::after {
  width: 100%;
}

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

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    color: #c4b28e;
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    color: #c4b28e;
  }
}

/*　下に下がる動き　*/
header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
  color: #c4b28e;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    color: #c4b28e;
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    color: #c4b28e;
  }
}

.sns {
  width: 30%;
  height: 80px;
  padding-left: 10rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sns ul {
  margin-top: 0.3rem;
}

.sns li {
  padding-right: 4rem;
}

.sns li a {
  display: block;
}

.sns li a img {
  width: 20px;
}

.sns li:last-of-type a {
  border: 1px solid #fff;
  border-radius: 30px;
  line-height: 1.5;
  padding: 1rem 1.5rem;
  letter-spacing: 0.1em;
  color: #fff;
}

.sns .onlineshop {
  /*== ボタン共通設定 */
  /*ボタン内spanの形状*/
  /*== 背景が流れる（左から右） */
  /*hoverした際の形状*/
}

.sns .onlineshop a {
  display: block;
}

.sns .onlineshop .btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50px;
  /* ボーダーの色と太さ */
  padding: 0.5rem 2.3rem;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: ease .3s;
  transition: ease .3s;
}

.sns .onlineshop .btn p {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
}

.sns .onlineshop .btn:hover p {
  color: #222222;
}

.sns .onlineshop .bgleft:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #fff;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.sns .onlineshop .bgleft:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.main_imgBox {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.main_img {
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 36s 0s infinite;
  animation: anime 36s 0s infinite;
}

.main_img:nth-of-type(2) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.main_img:nth-of-type(3) {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}

.main_img:nth-of-type(4) {
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
}

.main_img:nth-of-type(5) {
  -webkit-animation-delay: 24s;
  animation-delay: 24s;
}

.main_img:nth-of-type(6) {
  -webkit-animation-delay: 30s;
  animation-delay: 30s;
}

@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@keyframes anime {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

#news {
  max-width: 1040px;
  padding: 0 2rem;
  margin: 16.8rem auto;
}

#news > div {
  text-align: center;
  padding-bottom: 8rem;
}

#news ul {
  width: 100%;
  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;
}

#news ul li {
  width: 30%;
}

#news ul li a {
  display: block;
  width: 100%;
}

#news ul li a img {
  width: 100%;
}

#news .news_cap p {
  color: #222222;
  padding: 1rem 0;
}

#news .news_cap p time {
  color: #c4b28e;
}

#news1 {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#news2 {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all 0.5s ease-in-out 0.3s;
  transition: all 0.5s ease-in-out 0.3s;
}

#news3 {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all 0.5s ease-in-out 0.6s;
  transition: all 0.5s ease-in-out 0.6s;
}

.all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-color: rgba(134, 0, 55, 0.9);
  z-index: 999;
  width: 100%;
  padding: 3rem 0;
  letter-spacing: 0.1rem;
}

@media only screen and (max-width: 1366px) {
  .all {
    padding: 2rem 0;
  }
}

@media only screen and (max-width: 1080px) {
  .all {
    padding: 0;
  }
}

.all p, .all h2 {
  color: #c4b28e;
}

.all .left {
  width: 30%;
  text-align: center;
  padding-left: 10%;
}

.all .left p:nth-of-type(1) {
  padding-bottom: 1rem;
}

.all .left h2 {
  padding: 3% 0;
}

.all .left .business {
  padding: 10% 0 3% 0;
}

@media only screen and (max-width: 1366px) {
  .all .left .business {
    padding: 13% 0 3% 0;
  }
}

@media only screen and (max-width: 1080px) {
  .all .left .business {
    padding: 16% 0 3% 0;
  }
}

.all .right {
  width: 30%;
  text-align: center;
  padding-right: 10%;
}

.all .right p:last-of-type {
  font-size: 2.4rem;
  padding: 2rem 0;
}

.all .right h2 {
  padding-top: 2rem;
}

.all .right p:first-of-type {
  padding-top: 1.5rem;
}

.first-v2 {
  position: relative;
  background-image: url(../images/kameji_openhour_2.jpg);
  background-position: top;
  width: 100%;
  z-index: 1;
  padding-bottom: 45%;
  background-size: cover;
  /* padding-top: unquote("min(100vh,75%)"); */
}

@media only screen and (max-width: 1080px) {
  .first-v2 {
    padding-bottom: 50%;
  }
}

.all {
  position: absolute;
  bottom: -22%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
}

@media only screen and (max-width: 1366px) {
  .all {
    position: absolute;
    bottom: -27%;
  }
}

@media only screen and (max-width: 1080px) {
  .all {
    bottom: -26%;
  }
}

#menu_container {
  font-family: 'Copperplate Gothic light', 'Copperplate', 'fantasy';
  max-width: 1040px;
  padding: 0 1rem;
  margin: 20rem auto;
  letter-spacing: 1.5px;
}

#menu_container > div {
  text-align: center;
  padding: 5rem 0;
}

#menu_container h3 {
  font-family: 'Copperplate Gothic Bold', 'Copperplate', 'fantasy';
  font-size: 2rem;
  padding: 1rem 0;
  line-height: 1.5;
}

#menu_container h3:nth-of-type(2) {
  padding-top: 3rem;
}

#menu_container h3 span {
  vertical-align: middle;
}

#menu_container .menu_wrap {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url(../images/menu_left_top.png), url(../images/menu_left_bottom.png), url(../images/menu_right_top.png), url(../images/menu_right_bottom.png);
  background-repeat: no-repeat;
  background-position: left top, left bottom, right top, right bottom;
  padding: 0.3%;
}

#menu_container .menu_wrap .menu_boder {
  width: 100%;
  border: 1px solid #c4b28e;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#menu_container .menu_wrap .and {
  padding-top: 1.5rem;
}

#menu_container .menu_wrap .m_left {
  width: 50%;
  padding-top: 10rem;
}

@media only screen and (max-width: 1080px) {
  #menu_container .menu_wrap .m_left {
    padding-top: 13%;
  }
}

#menu_container .menu_wrap .m_left span {
  font-size: 1.1rem;
}

#menu_container .menu_wrap .m_left .price {
  line-height: 1;
  padding: 1rem 0;
}

#menu_container .menu_wrap .m_left .cocktails {
  line-height: 1;
  padding: 1rem 0;
}

#menu_container .menu_wrap .m_left .cocktails span {
  font-family: 'Secular One', sans-serif;
}

#menu_container .menu_wrap .m_right {
  text-align: center;
  width: 50%;
  padding: 2rem 2rem;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#menu_container .menu_wrap .m_right a {
  display: block;
}

#menu_container .menu_wrap .m_right img {
  width: 100%;
}

#menu_container .menu_wrap .leadmore {
  padding-top: 4rem;
  /*== ボタン共通設定 */
  /*ボタン内spanの形状*/
  /*== 背景が流れる（左から右） */
  /*hoverした際の形状*/
}

#menu_container .menu_wrap .leadmore a {
  display: block;
}

#menu_container .menu_wrap .leadmore .btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  display: inline-block;
  color: #c4b28e;
  border: 1px solid #c4b28e;
  border-radius: 50px;
  /* ボーダーの色と太さ */
  padding: 0.5rem 2.3rem;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: ease .3s;
  transition: ease .3s;
}

#menu_container .menu_wrap .leadmore .btn p {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #c4b28e;
}

#menu_container .menu_wrap .leadmore .btn:hover p {
  color: #fff;
}

#menu_container .menu_wrap .leadmore .bgleft:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #c4b28e;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

#menu_container .menu_wrap .leadmore .bgleft:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

#menu_container .menu_wrap .zoom span.mask {
  position: relative;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  /*移り変わる速さを変更したい場合はこの数値を変更*/
  display: block;
  /*画像をくくるspanタグをブロック要素にする*/
  line-height: 0;
  /*行の高さを0にする*/
  overflow: hidden;
  /*拡大してはみ出る要素を隠す*/
}

#menu_container .menu_wrap .zoom:hover span.mask::before {
  /*hoverした時の変化*/
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /*背景色*/
}

#menu_container .menu_wrap .zoom img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  /*移り変わる速さを変更したい場合はこの数値を変更*/
}

#menu_container .menu_wrap .zoom:hover img {
  /*hoverした時の変化*/
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  /*拡大の値を変更したい場合はこの数値を変更*/
  -webkit-filter: blur(1px);
          filter: blur(1px);
  /*ぼかし具合を変更したい場合はこの数値を変更*/
}

#insta {
  max-width: 1040px;
  padding: 0 2rem;
  margin: 0 auto;
}

#insta .i_title {
  padding: 5rem 0;
  text-align: center;
}

#insta .i_title a {
  display: block;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#insta .i_title a img {
  width: 4rem;
  display: inline-block;
  padding-top: 1rem;
}

#insta .i_title a span {
  color: #c4b28e;
  font-size: 3.6rem;
  display: inline-block;
  width: 100%;
  font-family: 'Secular One', sans-serif;
}

#insta .i_title a:hover span {
  color: #860037;
}

#insta .i_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#insta .i_img div {
  width: 24%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0.3rem 0.3rem;
}

#insta .i_img div a {
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#insta .i_img div a:hover {
  opacity: 0.5;
}

#insta .i_img div img {
  width: 100%;
}

#insta .i_img div img:last-of-type {
  padding-top: 0.5rem;
}

#insta .i_img div:nth-of-type(2) {
  width: 49%;
  padding-bottom: 0.4rem;
}

footer {
  background-color: #860037;
}

.footer_wrap {
  max-width: 1040px;
  padding: 0 1rem;
  margin: 0 auto;
  background-color: #860037;
  margin-top: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.footer_wrap .f_rogo {
  position: absolute;
  display: block;
  width: 14%;
  top: -68px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

@media only screen and (max-width: 1080px) {
  .footer_wrap .f_rogo {
    width: 10%;
    top: -48px;
  }
  .footer_wrap .f_rogo img {
    width: 100%;
  }
}

.footer_wrap .kaiten {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.footer_wrap .kaiten:hover {
  -webkit-transform: rotateZ(360deg);
          transform: rotateZ(360deg);
}

.footer_wrap div {
  width: 35%;
  padding: 12rem 0;
}

.footer_wrap div p:nth-of-type(1) {
  padding-bottom: 1rem;
}

.footer_wrap div h2 {
  padding: 2rem 0;
}

.footer_wrap div:nth-of-type(3) {
  width: 28%;
}

.footer_wrap div:nth-of-type(3) h2 a {
  color: #c4b28e;
  display: block;
}

.footer_wrap div:nth-of-type(3) a {
  display: inline-block;
  padding-right: 3%;
}

.footer_wrap span {
  width: 100%;
  text-align: center;
  padding: 3rem 0;
  border-top: 2px solid #c4b28e;
}
/*# sourceMappingURL=style.css.map */