@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 {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  background: transparent;
  font-size: 100%;
}

body {
  line-height: 1;
}

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

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] {
  border-bottom: 1px dotted;
  cursor: help;
}

li {
  list-style-type: none;
}

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

input,
select {
  vertical-align: middle;
}

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

a {
  outline: none;
}

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

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

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

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

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

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

a:hover {
  opacity: .7;
  transition: opacity .2s;
}

a :focus {
  outline: none;
}

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

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


/* reservation */
.reservation {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  background-color: #009B63;
  padding: 1.3rem 0;
  display: flex;
}

.reservation .inner {
  display: flex;
  gap: 1.3rem;
  justify-content: center;
}

.reservation .inner .title {
  width: 20rem;
}

.reservation .inner .btn {
  width: 21rem;
}

.reservation.is-visible {
  opacity: 1;
  visibility: visible;
}

/* reservation-end */
.reservation-end {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.reservation-end.is-visible {
  opacity: 1;
  visibility: visible;
}


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

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

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

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

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

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

  /* reservation */
  .reservation {
    top: unset;
    bottom: 0;
    /* right: ; */
    z-index: 100;
    width: 100%;
  }

  .reservation .inner {
    flex-wrap: wrap;
    row-gap: 1.3rem;
  }

  .reservation .inner .title {
    width: 21rem;
  }

  .reservation .inner .btn {
    width: 43%;
  }

}

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

  .is-pc {
    display: block;
  }

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

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

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

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

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

}