@charset "UTF-8";

/* ======================================================
  Reset
====================================================== */
* {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
a,
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 {
  font-size: 100%;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

body {
  line-height: 1;
}

img {
  line-height: 0;
  vertical-align: top;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

del {
  text-decoration: line-through;
}

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

li {
  list-style-type: none;
}

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

input,
select {
  vertical-align: middle;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: none;
  border-top: 1px solid #ccc;
}

a {
  outline: none;
}

.cf:before,
.cf:after {
  display: table;
  content: "";
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* ======================================================
  Common
====================================================== */
body,
html {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  width: 100%;
  height: 100%;
  color: #333;
}

.wrapper img,
.reservation img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  outline: none;
}

a:hover {
  transition: opacity 0.2s;
  opacity: 0.7;
}

a :focus {
  outline: none;
}

.is-hidden {
  position: relative;
  transform: translate(0, 20px);
  opacity: 0;
}

.is-hidden.is-show {
  position: relative;
  transition: 800ms ease;
  transform: translate(0, 0);
  opacity: 1;
}

@media screen and (max-width: 750px) {

  /* header */
  .header {
    padding-bottom: 12px;
    text-align: center;
  }

  .header_logo {
    width: calc((100/375) * 100%);
    margin: 0 auto;
  }

  /* footer */
  .footer {
    padding: 80px 0 220px 0;
    text-align: center;
  }

  .footer_btn {
    width: 85%;
    margin: auto;
    padding-bottom: 24px;
  }

  .footer_copy {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: .03em;
  }

  /* reservation */
  .reservation {
    width: 100%;
    /* background: #E370A4; */
    background: url(../img/sp/reservation_bg.jpg) center center no-repeat;
    background-size: cover;
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
  }

  .reservation p {
    max-width: 300px;
    margin-inline: auto;
    margin: 0 auto;
    padding: 16px 0;
  }

  .reservation img {
    filter: drop-shadow(0px 1.49596px 2.99192px rgba(0, 0, 0, 0.25));
  }
}

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

  .is-pc {
    display: block;
  }

  /* header */
  .header {
    padding-bottom: 14px;
    text-align: center;
  }

  .header_logo {
    width: 100px;
    margin: 0 auto;
  }

  /* footer */
  .footer {
    padding: 60px 0 240px 0;
    text-align: center;
  }

  .footer_btn {
    width: 362px;
    margin: auto;
    padding-bottom: 36px;
  }

  .footer_copy {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: .03em;
  }

  /* reservation */
  .reservation {
    width: 100%;
    /* background: #E370A4; */
    background: url(../img/pc/reservation_bg.jpg) center center no-repeat;
    background-size: cover;
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
    z-index: 10;
  }

  .reservation img {
    filter: drop-shadow(0px 1.49596px 2.99192px rgba(0, 0, 0, 0.25));
  }

  .reservation p {
    max-width: 508px;
    margin: 0 auto;
    padding: 22px 0;
  }
}