@charset "UTF-8";

/*==================================================================================
loading effects
==================================================================================*/
.loadingAnim {
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.loadingAnim:before,
.loadingAnim:after {
  line-height: 1;
  position: fixed;
  z-index: 99;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  margin-right: auto;
  margin-left: auto;
  content: '';
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
  background: #000;
}

.loadingAnim:before {
  top: 0;
}

.loadingAnim:after {
  bottom: 0;
}

.loaded .loadingAnim:before {
  height: 0;
  -webkit-transform: translateY(-1%);
  transform: translateY(-1%);
}

.loaded .loadingAnim:after {
  height: 0;
  -webkit-transform: translateY(1%);
  transform: translateY(1%);
}

.loadingAnim_line {
  line-height: 1;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 180px;
  height: 1.25em;
  margin: auto;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
  text-align: center;
}

.loadingAnim_line::after {
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  margin: auto auto auto 0;
  content: ' ';
  -webkit-animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  background-color: #fff;
  will-change: transform, width;
}

.loadingAnim_line::before {
  font-family: 'Allerta Stencil', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  display: block;
  content: 'LOADING';
  -webkit-animation: loadingAnim_text 1s ease .1s infinite alternate both;
  animation: loadingAnim_text 1s ease .1s infinite alternate both;
  letter-spacing: .5em;
  color: #fff;
  will-change: opacity;
}

.loaded .loadingAnim_line {
  overflow: hidden;
  height: 0;
}

.loaded .loadingAnim_line::after,
.loaded .loadingAnim_line::before {
  -webkit-animation: none;
  animation: none;
  font-weight: bold;
}

.loaded .loadingAnim_line::before {
  content: 'LOADED!';
  color: #c7243a;
}

@-webkit-keyframes loadingAnim {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}

@keyframes loadingAnim {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}

@-webkit-keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #000;
  }

  50% {
    color: #ccc;
  }

  100% {
    opacity: .5;
    color: #fff;
  }
}

@keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #000;
  }

  50% {
    color: #ccc;
  }

  100% {
    opacity: .5;
    color: #fff;
  }
}

/*==================================================================================
end loading effects
==================================================================================*/
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}

body {
  position: relative;
  font-size: 1.6rem;
  color: #000;
  background: #fff;
  line-height: 1.8;
  letter-spacing: 1px;
  position: relative;
}

body::after,
body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 8px;
  margin: 0 auto;
  background: #000;
  z-index: 10;
}

body::after {
  bottom: 13px;
  height: 3px;
}

body#top {
  background-image: url(../img/back01.png), url(../img/back02.png), url(../img/back03.png), url(../img/back04.png), url(../img/back05.png);
  background-repeat: no-repeat;
  background-position: top center;
}

main {
  display: block;
}

footer {
  position: relative;
  position: relative;
  color: #000;
  background: #fff;
}

footer::after,
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 8px;
  margin: 0 auto;
  background: #000;
  z-index: 10;
}

footer::after {
  top: 13px;
  height: 3px;
}

footer #pagetop {
  position: absolute;
  top: -24px;
  right: 0;
  left: 0;
  width: 48px;
  height: 24px;
  margin: auto;
  text-align: center;
  z-index: 10;
}

footer .inner {
  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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 26px 0;
}

footer .inner>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: flex-end;
}

footer .inner>div .footer-logo {
  margin-right: 40px;
  padding-right: 40px;
  border-right: 1px solid #ccc;
}

footer .inner>div p {
  text-align: left;
}

footer .inner p .icon-map img {
  width: 46px;
  height: 46px;
  margin-top: 10px;
}

footer .inner>p {
  text-align: right;
}

footer .inner p .tel {
  font-size: 2.8rem;
  font-family: 'Anton', sans-serif;
}

footer .inner>p .tel a {
  color: #000;
}

footer .inner p #produced {
  font-size: 1.4rem;
  font-family: 'Anton', sans-serif;
  color: #c7243a;
}

#content {
  width: 100%;
  padding: 0 4%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

img {
  vertical-align: bottom;
}

address {
  font-style: normal;
}

h2 {
  margin: 0 auto 40px;
  text-align: center;
}

h2 img {
  display: block;
  max-width: 100%;
  max-height: 4.6rem;
  height: auto;
  margin: 0 auto 10px;
}

h2 span {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
}

h2 span::before,
h2 span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 66px;
  height: 1px;
  background: #fff;
  display: block;
  margin: auto 0;
}

h2 span::before {
  left: -80px;
}

h2 span::after {
  right: -80px;
}

section {
  padding: 80px 0;
}

.button-area {
  text-align: center;
}

a[class^="link-border"] {
  position: relative;
  display: inline-block;
  margin-top: 36px;
  background-image: url(../img/link_border.png);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 4px 2em;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  letter-spacing: 4px;
  overflow: hidden;
  -webkit-transition: .4s;
  transition: .4s;
}

.fb {
  font-size: 30px;
}

a[class^="link-border"]:hover::after {
  left: 0;
}

a[class^="link-border"]::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: .14s;
  transition: .14s;
  z-index: -1;
}

a[class^="link-border"] img {
  vertical-align: middle;
  margin-left: 1em;
}

a.link-border-b {
  background-image: url(../img/link_border_b.png);
  color: #000;
}

a.link-border-b:hover {
  color: #fff;
}

a.link-border-b::after {
  background: #9E1B1B
}

/* nav button */
#nav_toggle {
  position: fixed;
  top: 30px;
  right: 30px;
  height: 54px;
  width: 54px;
  margin: 0;
  padding: 0;
  display: inline-block;
  border: none;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 9999;
  cursor: pointer;
  /* on時 */
}

#nav_toggle div {
  width: 100%;
  height: 100%;
}

#nav_toggle div::before,
#nav_toggle div::after {
  content: "";
  position: absolute;
  left: 11px;
  margin: auto 0;
  display: block;
  height: 4px;
  background: #c7243a;
  -webkit-transition: width .2s, -webkit-transform .4s .2s;
  transition: width .2s, -webkit-transform .4s .2s;
  transition: transform .4s .2s, width .2s;
  transition: transform .4s .2s, width .2s, -webkit-transform .4s .2s;
}

#nav_toggle div::before {
  width: 32px;
  top: 13px;
}

#nav_toggle div::after {
  width: 16px;
  bottom: 13px;
}

#nav_toggle div:hover::before,
#nav_toggle div:hover::after {
  width: 32px;
}

#nav_toggle span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 11px;
  margin: auto 0;
  display: block;
  width: 25px;
  height: 4px;
  background: #c7243a;
  z-index: 9999;
  -webkit-transition: .2s;
  transition: .2s;
}

#nav_toggle:hover span {
  width: 32px;
}

#nav_toggle.open div::before,
#nav_toggle.open div::after {
  width: 36px;
}

#nav_toggle.open div::before {
  -webkit-transform: translate(-2px, 12px) rotate(45deg);
  transform: translate(-2px, 12px) rotate(45deg);
}

#nav_toggle.open div::after {
  -webkit-transform: translate(-2px, -12px) rotate(-45deg);
  transform: translate(-2px, -12px) rotate(-45deg);
}

#nav_toggle.open span {
  left: -100%;
}

#main-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 150px 100px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.95);
  z-index: 9998;
}

#main-nav ul li {
  position: relative;
  text-align: left;
}

#main-nav ul li+li {
  margin-top: 2rem;
}

#main-nav ul li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -3rem;
  width: 1rem;
  height: 4px;
  margin: auto 0;
  background: #c7243a;
}

#main-nav ul li a {
  font-size: 2.4rem;
  color: #000;
  text-decoration: none;
}

#main-nav .address {
  color: #000;
  margin-left: -3rem;
  margin-top: 52px;
  text-align: left;
  font-size: 1.6rem;
}

/*==================================================================================
  INDEX
==================================================================================*/
#top-images {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  z-index: -1;
  -webkit-transition: all 1s;
  transition: all 1s;
}

#top-images::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

#top-images.bg01 {
  background-image: url(../img/back01.png);
}

#top-images.bg02 {
  background-image: url(../img/back02.png);
}

#top-images.bg03 {
  background-image: url(../img/back03.png);
}

#top-images.bg04 {
  background-image: url(../img/back04.png);
}

#top-images.bg05 {
  background-image: url(../img/back05.png);
}

#top {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 1;
}

#top #first-view {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0;
}

#top #first-view h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  max-width: 60%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all .2s;
  transition: all .2s;
  z-index: 20;
}

#top #first-view h1 img {
  width: 100%;
  height: auto;
}

#top #fee {
  position: relative;
}

#top #fee::after,
#top #fee::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  display: block;
  width: 100%;
  max-width: 960px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
}

#top #fee::after {
  background: #000;
  bottom: 0;
}

#top #fee img.opening {
  max-width: 80%;
  width: 300px;
  height: auto;
}

#top #facility {
  position: relative;
}

#top #facility::after,
#top #facility::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  display: block;
  width: 100%;
  max-width: 960px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
}

#top #facility::after {
  background: #000;
  bottom: 0;
}

#top #facility .text-area dl {
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

#top #facility .text-area dl dt {
  line-height: 1em;
  padding-bottom: 14px;
  font-size: 22px;
  font-weight: bold;
}

#top #facility .text-area dl dt span {
  font-size: 16px;
}

#top #facility .text-area dl dd {
  margin-bottom: 36px;
  padding-top: 4px;
  border-top: 1px solid #fff;
}

#top #gallery {
  position: relative;
}

#top #gallery::after,
#top #gallery::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  display: block;
  width: 100%;
  max-width: 960px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
}

#top #gallery::after {
  background: #000;
  bottom: 0;
}

#top #gallery .gallery-area {
  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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#top #gallery .gallery-area .photo {
  width: 48%;
  margin-bottom: 36px;
}

#top #gallery .gallery-area .photo:last-child {
  margin-bottom: 0;
}

#top #gallery .gallery-area .photo a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 4px solid #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.8);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.8);
  -webkit-transition: all .2s;
  transition: all .2s;
}

#top #gallery .gallery-area .photo a:hover {
  -webkit-transform: translate(-4px, -4px);
  transform: translate(-4px, -4px);
  -webkit-box-shadow: none;
  box-shadow: none;
}

#top #gallery .gallery-area .photo img {
  width: 100%;
  height: auto;
}

#top #reservation {
  position: relative;
}

#top #reservation::after,
#top #reservation::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  display: block;
  width: 100%;
  max-width: 960px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
}

#top #reservation::after {
  background: #000;
  bottom: 0;
}

#top #reservation .text-area p {
  margin-bottom: 1em;
}

#top #reservation .text-area .tel,
#top #reservation .text-area .time {
  margin-bottom: 0;
  font-size: 4.6rem;
  font-weight: 700;
  text-shadow: 0px 0px 14px black;
}

#top #reservation .text-area .tel span,
#top #reservation .text-area .time span {
  font-family: 'Anton', sans-serif;
  display: inline-block;
  margin-bottom: 0;
  letter-spacing: .5rem;
  font-size: 4.6rem;
  font-weight: 700;
  text-shadow: 0px 0px 14px black;
}

#top #reservation .text-area .tel span a,
#top #reservation .text-area .time span a {
  color: #fff;
}

#top #access {
  position: relative;
}

#top #access::after,
#top #access::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  display: block;
  width: 100%;
  max-width: 960px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
}

#top #access::after {
  background: #000;
  bottom: 0;
}

#top #access .text-area address {
  margin-bottom: 1em;
}

#top #access .text-area .gmap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

#top #access .text-area .gmap iframe {
  width: 100%;
  height: 400px;
}

#top #parking {
  position: relative;
}

#top #parking::after,
#top #parking::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  display: block;
  width: 100%;
  max-width: 960px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
}

#top #parking::after {
  background: #000;
  bottom: 0;
}

#top #parking .text-area p {
  font-weight: bold;
}

#top #parking .text-area p img {
  vertical-align: text-top;
  margin-right: .5rem;
}

#top #parking .text-area p span {
  font-size: 30px;
  font-weight: bold;
}

#top #parking .text-area .illust-map {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

#top #parking .text-area .illust-map img {
  display: inline-block;
  width: 48%;
  height: auto;
  padding-right: 2%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#top #parking .text-area .illust-map img:nth-child(even) {
  padding-left: 2%;
  padding-right: 0;
  border-left: 1px solid #ccc;
}

#top #use .text-area .use-area {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  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;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#top #use .text-area .use-area>div {
  width: 33%;
  margin-bottom: 1em;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #ccc;
}

#top #use .text-area .use-area>div:last-child {
  border-right: none;
}

#top #use .text-area .use-area>div h3 {
  font-size: 2.6rem;
  font-weight: bold;
}

/*==================================================================================
  sub page common
==================================================================================*/
body:not(#top) header {
  position: relative;
  width: 100%;
  height: 404px;
  max-height: 40vh;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

body:not(#top) header.header-facility {
  background-image: url(../img/headbg_facility.png);
}

body:not(#top) header.header-terms {
  background-image: url(../img/headbg_terms.png);
}

body:not(#top) header #top-logo {
  position: absolute;
  top: 0;
  left: 50%;
  width: 220px;
  max-width: 60%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  -webkit-transition: all .2s;
  transition: all .2s;
  z-index: 20;
}

body:not(#top) header #top-logo.tl {
  width: 160px;
  top: 20px;
  left: 20px;
  border: 1px solid #fff;
  background: #000;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

body:not(#top) header #top-logo img {
  width: 100%;
  height: auto;
}

body:not(#top) h1 {
  margin: 0 auto 40px;
  text-align: center;
}

body:not(#top) h1 img {
  display: block;
  max-width: 100%;
  max-height: 4.6rem;
  height: auto;
  margin: 0 auto 10px;
}

body:not(#top) h1 span {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
}

body:not(#top) h1 span::before,
body:not(#top) h1 span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 66px;
  height: 1px;
  background: #fff;
  display: block;
  margin: auto 0;
}

body:not(#top) h1 span::before {
  left: -80px;
}

body:not(#top) h1 span::after {
  right: -80px;
}

body:not(#top) h1 span::before,
body:not(#top) h1 span::after {
  background: #000;
}

.sub-page-content {
  position: relative;
}

.sub-page-content::after,
.sub-page-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 8px;
  margin: 0 auto;
  background: #000;
  z-index: 10;
}

.sub-page-content::after {
  top: 13px;
  height: 3px;
}

/*==================================================================================
  Facility 設備ページ
==================================================================================*/
#facility {
  text-align: center;
}

#facility #items .item-area {
  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;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}

#facility #items .item-area .item-wrap {
  position: relative;
  width: 50%;
  padding: 4%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#facility #items .item-area .item-wrap:nth-child(odd)::after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 90%;
  background: #ccc;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
}

#facility #items .item-area .item-wrap:nth-last-child(n + 3)::before {
  content: "";
  position: absolute;
  display: block;
  width: 90%;
  height: 1px;
  background: #ccc;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
}

#facility #items .item-area .item-wrap img {
  max-width: 100%;
  height: auto;
}

#facility #items .item-area .item-wrap h2 {
  margin: 1em auto;
  font-size: 2.2rem;
  font-weight: bold;
}

#facility #items .item-area .item-wrap .price {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.4;
}

#facility #items .item-area .item-wrap .price::before,
#facility #items .item-area .item-wrap .price::after {
  content: none;
}

/*==================================================================================
  terms 利用規約ページ
==================================================================================*/
#terms #detail .textarea {
  text-align: left;
}

#terms #detail .textarea dl {
  margin-bottom: 6rem;
}

#terms #detail .textarea dl dt {
  margin-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: bold;
}

#terms #detail .textarea dl dd {
  margin-left: 4%;
  margin-bottom: 1rem;
  font-weight: bold;
}

#terms #detail .textarea dl dd ol {
  counter-reset: my-counter;
  list-style: none;
}

#terms #detail .textarea dl dd ol>li {
  position: relative;
  margin-bottom: 1.8rem;
  padding-left: 36px;
  font-weight: bold;
}

#terms #detail .textarea dl dd ol>li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  display: block;
  position: absolute;
  left: 0;
  margin: auto;
  font-size: 2.6rem;
  line-height: 1;
  font-family: 'Allerta Stencil', sans-serif;
}

#terms #detail .textarea dl dd ol>li:nth-child(n + 10)::before {
  transform: scale(0.8, .9) translateX(-25%);
}

#terms #detail .textarea dl dd ol>li ul {
  margin-left: 4%;
  list-style-position: outside;
  list-style-type: disc;
}

#terms #detail .textarea dl dd ol>li ul li {
  margin-bottom: 0;
  font-weight: bold;
}

/*==================================================================================
terms
==================================================================================*/
@media screen and (max-width: 960px) {
  body {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 60%;
  }

  #nav_toggle {
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
  }

  #top #first-view h1 {
    top: 45%;
  }

  #top #reservation .text-area .tel,
  #top #reservation .text-area .time,
  #top #reservation .text-area .tel span,
  #top #reservation .text-area .time span {
    font-size: 3.4rem;
  }

  #top #parking .text-area .illust-map img {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0;
    padding: 0;
  }

  #top #parking .text-area .illust-map img:nth-child(even) {
    border: none;
    padding-top: 30px;
  }

  #top #use .text-area .use-area {
    display: block;
  }

  #top #use .text-area .use-area>div {
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
  }

  .fb {
    font-size: 22px;
  }

  a[class^="link-border"] {
    padding: 4px 1em;
  }

  #facility #items .item-area {
    display: block;
  }

  #facility #items .item-area .item-wrap {
    width: 100%;
    border-bottom: 1px solid #ccc;
  }

  #facility #items .item-area .item-wrap:last-child {
    border: none;
  }

  #facility #items .item-area .item-wrap:nth-child(odd)::after,
  #facility #items .item-area .item-wrap:nth-child(-n + 2)::before {
    content: none;
  }

  #facility #items .item-area .item-wrap img {
    max-width: 60%;
    height: auto;
  }

  #top #gallery .gallery-area .photo {
    width: 100%;
  }

  footer .inner {
    padding: 36px 0;
  }

  footer .inner div {
    display: block;
    width: 100%;
    text-align: center;
  }

  footer .inner div .footer-logo {
    margin: 0 auto 10px;
    padding: 0;
    border: none;
  }

  footer .inner div p {
    text-align: center;
  }

  footer .inner p {
    margin: auto;
    text-align: center;
  }
}

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

  #top #reservation .text-area .tel,
  #top #reservation .text-area .time,
  #top #reservation .text-area .tel span,
  #top #reservation .text-area .time span {
    font-size: 2.6rem;
  }
}

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