@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;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
/*nav ul {
    list-style:none;
}*/
ol,
ul {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  max-width: 100%;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: min(16px, 2.76vw);
}

body {
  max-width: 580px;
  margin: auto;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
}

img {
  width: 100%;
}

a {
  color: #040000;
  text-decoration: none;
}

a:hover {
  color: #A80E78;
  text-decoration: none;
}

a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 45%;
  position: relative;
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* 汎用 */
.sans-serif {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

.pt10 {
  padding-top: 0.8rem;
}

.pb10 {
  padding-bottom: 0.8rem;
}

.mb10 {
  margin-bottom: 0.8rem;
}

.pt20 {
  padding-top: 1.6rem;
}

.pb20 {
  padding-bottom: 1.6rem;
}

.mb20 {
  margin-bottom: 1.6rem;
}

.pt30 {
  padding-top: 2.4rem;
}

.pb30 {
  padding-bottom: 2.4rem;
}

.mb30 {
  margin-bottom: 2.4rem;
}

.pt40 {
  padding-top: 3.2rem;
}

.pb40 {
  padding-bottom: 3.2rem;
}

.mb40 {
  margin-bottom: 3.2rem;
}

.pt50 {
  padding-top: 4rem;
}

.pb50 {
  padding-bottom: 4rem;
}

.mb50 {
  margin-bottom: 4rem;
}

.pt60 {
  padding-top: 4.8rem;
}

.pb60 {
  padding-bottom: 4.8rem;
}

.mb60 {
  margin-bottom: 4.8rem;
}

.pt70 {
  padding-top: 5.6rem;
}

.pb70 {
  padding-bottom: 5.6rem;
}

.mb70 {
  margin-bottom: 5.6rem;
}

.pt80 {
  padding-top: 6.4rem;
}

.pb80 {
  padding-bottom: 6.4rem;
}

.mb80 {
  margin-bottom: 6.4rem;
}

.pt90 {
  padding-top: 7.2rem;
}

.pb90 {
  padding-bottom: 7.2rem;
}

.mb90 {
  margin-bottom: 7.2rem;
}

.pl5 {
  padding-left: 5%;
}

.pl10 {
  padding-left: 10%;
}

.wd10 {
  width: 10%;
}

.wd15 {
  width: 15%;
}

.wd20 {
  width: 20%;
}

.wd25 {
  width: 25%;
}

.wd30 {
  width: 30%;
}

.wd35 {
  width: 35%;
}

.wd40 {
  width: 40%;
}

.wd45 {
  width: 45%;
}

.wd50 {
  width: 50%;
}

.wd55 {
  width: 55%;
}

.wd60 {
  width: 60%;
}

.wd65 {
  width: 65%;
}

.wd70 {
  width: 70%;
}

.wd75 {
  width: 75%;
}

.wd80 {
  width: 80%;
}

.wd85 {
  width: 85%;
}

.wd90 {
  width: 90%;
}

.wd95 {
  width: 95%;
}

header {
  background-color: #fff;
  position: sticky;
  top: 0px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
}

.flex {
  display: flex;
}

.header__inner {
  width: 93%;
  margin-left: 5%;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__inner div:nth-child(1) {
  width: 43%;
}
.header__inner div:nth-child(2) {
  width: 14%;
}

.header__menu {
  display: flex;
  gap: 0.8rem;
  margin: 0 auto;
  width: 90%;
}

/* ナビ */
nav.globalMenuSp {
  position: fixed;
  z-index: 200;
  top: 0px;
  right: 0;
  background: #fff;
  color: #000;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 60%;
}

nav.globalMenuSp ul {
  background: #231815;
  margin: 0 auto;
  padding: 0;
  padding-top: 4rem;
  width: 100%;
}

nav.globalMenuSp ul li {
  font-size: 1.6rem;
  list-style-type: none;
  padding: 0;
  width: 90%;
  margin-left: 5%;
  border-bottom: 1px solid #9FA0A0;
  text-align: left;
}

/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}

.navToggle {
  display: block;
  /*  position: fixed;    /* bodyに対しての絶対位置指定 */
  /*  right: 13px;
  top: 12px;
  width: 42px;
  height: 51px;*/
  cursor: pointer;
  z-index: 300;
  text-align: center;
}

/* メニュー */
#menubox {
  text-align: center;
  display: flex;
  justify-content: space-around;
  padding: 0 0 5px;
  margin: 0;
  box-sizing: border-box;
}

.menu-li {
  margin: 0 1%;
}

footer .arrow {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
}

footer .arrow::before {
  content: "";
  transform: rotate(45deg);
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.08rem solid #A80E78;
  border-right: 0.08rem solid #A80E78;
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin-left: 5%;
  border-top: #990e78 2px solid;
  font-size: 1.2rem;
  padding-top: 0.5rem;
}
.footer-list__item {
  width: 50%;
  padding-top: 0.8rem;
}

.footer__logo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 90%;
  padding-left: 5%;
}

.footer-left {
  width: 49%;
  margin-right: 2%;
}

.footer-right {
  width: 49%;
}

.min {
  font-size: 0.952rem;
  width: 86%;
  margin-left: 7%;
  box-sizing: border-box;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: justify;
}

.bcbl {
  background-color: #000;
}

.shopinfo {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin-left: 5%;
  line-height: 1.3;
}
.shopinfo__text {
  width: 60%;
}
.shopinfo__text--title {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.3;
  padding-bottom: 0.2rem;
}
.shopinfo__text--attention {
  background-color: #ffe400;
  color: #d90012;
  text-align: center;
  width: 70%;
  letter-spacing: 0.1em;
  font-weight: 900;
  margin-top: 0.4rem;
}
.shopinfo__map {
  width: 40%;
}

.p_re {
  position: relative;
}

.p_ab {
  position: absolute;
}

.js-open-item {
  display: block;
  transition: transform 0.4s;
}

.js-open-item.hide {
  display: none;
  transition: transform 0.4s;
}/*# sourceMappingURL=style.css.map */