html {
  overflow-y: scroll;
}

body {
	margin: 0;
	background-color: #FFFFFF;
	color: #333;
	font-size: 14px;
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, "MS PGothic", sans-serif;
	line-height: 1.5;
}

@media (max-width: 767px) {
  .brDesktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .brMobile {
    display: none;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 5px;
}
header::before {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #000000;
	content: "";
}
@media (max-width: 767px) {
  header::before {
    z-index: 200;
  }
}
@media (min-width: 768px) {
  header::before {
    z-index: 100;
  }
}

.navigation img {
  display: block;
}
@media (max-width: 767px) {
  .navigation_bar {
    position: absolute;
    top: 5px;
    width: 100%;
    height: 48px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.navigation_logo {
  position: absolute;
  top: 11px;
  left: 0;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 31px;
  line-height: 1;
}
@media (min-width: 768px) {
  .navigation_logo {
    display: none;
  }
}
.navigation_logo a {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 767px) {
.navigation .navigation_bar .navigation_logo a {
	padding-top: 3px;
	font-size: 12px;
	color: #333;
	text-decoration: none;
}

  .navigation_logo a img {
    width: 108px;
    height: 22px;
  }
}
.navigation_button {
  position: absolute;
  z-index: 200;
}
@media (max-width: 767px) {
  .navigation_button {
    top: 2px;
    right: 11px;
  }
}
@media (min-width: 768px) {
  .navigation_button {
    top: 30px;
    right: 41px;
  }
}
.navigation_button a,
.navigation_button a span {
  display: inline-block;
  box-sizing: border-box;
}
.navigation_button a {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  border-style: solid;
  border-color: transparent;
  border-top-width: 10px;
  border-right-width: 9px;
  border-bottom-width: 10px;
  border-left-width: 9px;
}
.navigation_button a::after {
  position: absolute;
  bottom: -1px;
  display: block;
  width: 100%;
  height: 7px;
  background-image: url(../img/drawer.svg);
  background-position: center center;
  background-size: 22px 7px;
  background-repeat: no-repeat;
  color: #fff;
  content: "";
  -webkit-transition: bottom 0.4s;
  -ms-transition: bottom 0.4s;
  transition: bottom 0.4s;
}
body.showMenu .navigation_button a::after {
  bottom: -3px;
}
.navigation_button a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1a1a1a;
}
.navigation_button a span:nth-of-type(1) {
  top: 0;
  -webkit-transition: -webkit-transform 0.4s;
  -ms-transition: -ms-transform 0.4s;
  transition: transform 0.4s;
}
body.showMenu .navigation_button a span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-315deg);
  -ms-transform: translateY(6px) rotate(-315deg);
  transform: translateY(6px) rotate(-315deg);
}
.navigation_button a span:nth-of-type(2) {
  top: 6px;
  -webkit-transition: opacity 0.4s;
  -ms-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
body.showMenu .navigation_button a span:nth-of-type(2) {
  opacity: 0;
}
.navigation_button a span:nth-of-type(3) {
  top: 12px;
  -webkit-transition: -webkit-transform 0.4s;
  -ms-transition: -ms-transform 0.4s;
  transition: transform 0.4s;
}
body.showMenu .navigation_button a span:nth-of-type(3) {
  -webkit-transform: translateY(-6px) rotate(315deg);
  -ms-transform: translateY(-6px) rotate(315deg);
  transform: translateY(-6px) rotate(315deg);
}
.navigation_menu {
  position: fixed;
  z-index: 100;
  width: 100%;
  background-color: #fff;
  pointer-events: none;
}
@media (max-width: 767px) {
  .navigation_menu {
    top: 5px;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  body.sizeMobile .navigation_menu {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
}
@media (min-width: 768px) {
  .navigation_menu {
    top: 0;
    visibility: hidden;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  body.sizeDesktop .navigation_menu {
    -webkit-transition: visibility 0.5s linear, -webkit-transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: visibility 0.5s linear, transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  }
}
body.showMenu .navigation_menu {
  pointer-events: auto;
}
@media (max-width: 767px) {
  body.showMenu .navigation_menu {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@media (min-width: 768px) {
  body.showMenu .navigation_menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.navigation_menu ul {
  list-style-type: none;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 767px) {
  .navigation_menu ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 18px;
    padding-bottom: 18px;
    padding-left: 18px;
  }
}
@media (min-width: 768px) {
  .navigation_menu ul {
    position: relative;
    top: 50%;
    z-index: 500;
    margin: 0 auto;
    padding-left: 0;
    width: 324px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.navigation_menu ul li {
  padding-top: 2px;
  padding-bottom: 2px;
  border-bottom: 1px solid #666;
  text-align: center;
}
.navigation_menu ul li:first-child {
  padding-top: 0;
  font-size: 30px;
  line-height: 14px;
}
.navigation_menu ul li:first-child a {
  padding: 0;
}
@media (max-width: 767px) {
  .navigation_menu ul li:first-child a {
	margin-top: 25px;
	margin-right: 11px;
	margin-bottom: 16px;
	margin-left: 11px;
  }
}
@media (min-width: 768px) {
  .navigation_menu ul li:first-child a {
    margin: 0 11px 16px;
  }
}
.navigation_menu ul li a {
  display: inline-block;
  padding: 15px 11px 15px;
  color: #1a1a1a;
  vertical-align: top;
  text-decoration: none;
  line-height: 14px;
}
.navigation_menu ul li.nav-sns a {
  padding: 11px;
}

@media (max-width: 767px) {
  .section + .section {
    margin-top: 50px;
  }
}
@media (min-width: 768px) {
  .section + .section {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .section {
    margin-right: auto;
    margin-bottom: 72px;
    margin-left: auto;
    width: 600px;
  }
}
.section-header {
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 767px) {
  .section-header {
    margin-top: 0;
    margin-bottom: 26px;
  }
}
@media (min-width: 768px) {
  .section-header {
    margin-top: 0;
    margin-bottom: 32px;
  }
}
.section-header::after {
  display: block;
  margin-top: 2px;
  height: 7px;
  background-image: url(../img/line.png);
  background-position: center center;
  background-size: auto 7px;
  content: "";
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .section-header::after {
    background-image: url(../img/line@2x.png);
  }
}
@media (max-width: 767px) {
  .section-body {
    margin-right: 10px;
    margin-left: 10px;
  }
}

@media (max-width: 767px) {
  .slide {
    margin-bottom: 28px;
  }
}
@media (min-width: 768px) {
  .slide {
    margin-bottom: 66px;
  }
}
.slide .slide_list {
  margin-right: auto;
  margin-left: auto;
  max-width: 700px;
  width: 100%;
}
.slide .slide_item img {
  max-width: 700px;
  width: 100%;
  height: auto;
}
.slide .slick-dotted.slick-slider {
  margin-bottom: 0;
  padding-bottom: 30px;
}
.slide .slick-dots {
  bottom: 0;
  height: 10px;
  line-height: 0;
}
.slide .slick-dots li {
  margin: 0 1px;
  width: 10px;
  height: 10px;
}
.slide .slick-dots li button {
  padding: 5px;
  width: 5px;
  height: 5px;
}
.slide .slick-dots li button:before {
  display: block;
  margin: 25%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #c1c1c1;
  content: "";
  opacity: 1;
}
.slide .slick-dots li.slick-active button:before {
  background-color: #666;
  opacity: 1;
}

#description .section-body > div {
	line-height: 32px;
}
@media (max-width: 767px) {
  #description .section-body > div {
    font-size: 13px;
	text-align: center;
  }
}
@media (min-width: 768px) {
  #description .section-body > div {
	font-size: 13px;
	text-align: center;
  }
}
#description .section-body > div p {
  margin-top: 0;
  margin-bottom: 0;
}
#description .section-body > div:first-child {
  text-align: center;
}
@media (max-width: 767px) {
  #description .section-body > div:first-child {
    margin-bottom: 14px;
  }
}
@media (min-width: 768px) {
  #description .section-body > div:first-child {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  #description .section-body > div:first-child {
	font-size: 14px;
	line-height: 38px;
	text-align: center;
  }
}
@media (min-width: 768px) {
  #description .section-body > div:first-child {
	font-size: 16px;
	line-height: 40px;
  }
}
@supports (font-feature-settings: "palt") {
  #description .section-body > div:first-child {
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
  }
}

#about .section-subheader {
  display: table;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  #about .section-subheader {
	margin-right: auto;
	margin-left: auto;
	width: 366px;
	margin-top: 50px;
  }
}
#about .section-subheader::after, #about .section-subheader::before {
  display: table-cell;
  width: 50%;
  background: linear-gradient(transparent 50%, currentColor 50%, #666 calc(50% + 1px), transparent calc(50% + 1px));
  background-clip: padding;
  content: "";
}
#about .section-subheader::after {
	border-left-width: 10px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
}
#about .section-subheader::before {
	border-right-width: 10px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}
#pagetop #about .section-body a {
	color: #6A0016;
}


#pagetop #recruit .section-body .recruit-link a {
	color: #6A0016;
}



#about .section-subheader img {
  vertical-align: middle;
}
#about .section-body {
	text-align: center;
	font-size: 14px;
	line-height: 32px;
	margin-bottom: 20px;
}
#about .section-body .about-qa  {
	font-size: 12px;
}
#about .section-body .about-phone {
  font-size: 21px;
}
#about .section-body .about-address {
  font-size: 12px;
}

#news .section-body ul {
  margin: 0 auto;
  padding-left: 0;
  max-width: 500px;
  list-style-type: none;
  font-size: 11px;
  line-height: 16px;
}
#news .section-body ul li {
  margin-top: 12px;
  padding-right: 1em;
  padding-bottom: 2px;
  padding-left: 1em;
  border-bottom: 1px dashed #a8a8a8;
}
#pagetop #news .section-body {
	text-align: center;
}


#news .section-body ul li::after {
  display: block;
  clear: both;
  content: "";
}
#news .section-body  {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	width: 500px;
}
@media (max-width: 767px) {
#news .section-body {
    width: 100%;
  }
}

#news .section-body ul li:first-child {
  margin-top: 0;
}
#news .section-body ul li .news-date {
  display: block;
  float: left;
}
#news .section-body ul li .news-title {
  display: block;
  margin-left: 7.5em;
}
#news .section-body ul li a {
  color: inherit;
  text-decoration: none;
}

#menu .section-body {
  text-align: center;
  font-size: 14px;
  line-height: 36px;
}
@media (max-width: 767px) {
#menu .section-body {
    padding-bottom: 50px;
  }
}

#reservation .section-body {
  text-align: center;
  font-size: 14px;
  line-height: 36px;
}
#reservation .section-body .reservation-description {
  margin-bottom: 20px;
}
#reservation .section-body .reservation-link a {
  display: block;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  width: 235px;
  height: 35px;
  border: 1px solid #4d4d4d;
  background-color: #fff;
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  line-height: 33px;
}


#recruit .section-body {
	text-align: center;
	font-size: 13px;
	line-height: 36px;
}
#recruit .section-body .recruit-description {
  margin-bottom: 20px;
}
#recruit .section-body .recruit-link a {
  display: block;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  width: 235px;
  height: 35px;
  border: 1px solid #4d4d4d;
  background-color: #fff;
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  line-height: 33px;
}

@media (max-width: 767px) {
  #access .section-body {
    margin-right: 0;
    margin-left: 0;
  }
}
#access .section-body .access-map {
  margin-right: auto;
  margin-bottom: 16px;
  margin-left: auto;
  max-width: 460px;
  width: 100%;
}
#access .section-body .access-map_inner {
  position: relative;
  overflow: hidden;
  padding-bottom: 60.869565217%;
  height: 0;
}
#access .section-body .access-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#access .section-body .access-address {
  text-align: center;
  font-size: 11px;
}

.topAnchor {
  margin-right: 10px;
  margin-left: 10px;
  padding-top: 16px;
}
@media (max-width: 767px) {
  .topAnchor {
    margin-bottom: 88px;
  }
}
@media (min-width: 768px) {
  .topAnchor {
    margin-bottom: 121px;
  }
}
.topAnchor a {
	position: relative;
	display: block;
	margin-right: auto;
	margin-left: auto;
	max-width: 500px;
	height: 27px;
	border-radius: 5px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 11px;
	line-height: 27px;
	background-color: #000000;
}
.topAnchor a::before {
	position: absolute;
	top: -16px;
	left: calc(50% - 8px);
	content: "";
	border-top-width: 8px;
	border-right-width: 8px;
	border-bottom-width: 8px;
	border-left-width: 8px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #000000;
}

.bottomMenu-logo {
  text-align: center;
}
@media (max-width: 767px) {
  .bottomMenu-logo {
    margin-bottom: 23px;
  }
}
@media (min-width: 768px) {
  .bottomMenu-logo {
    margin-bottom: 40px;
  }
}
.bottomMenu-navigation {
  text-align: center;
  font-size: 0;
  line-height: 1;
}
@media (max-width: 767px) {
  .bottomMenu-navigation {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .bottomMenu-navigation {
    margin-bottom: 38px;
  }
}
.bottomMenu-navigation ul {
  display: inline-block;
  margin: 0;
  padding-left: 0;
  list-style-type: none;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
}
.bottomMenu-navigation ul::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 767px) {
  .bottomMenu-navigation ul {
    font-size: 10px;
  }
}
@media (min-width: 768px) {
  .bottomMenu-navigation ul {
    font-size: 13px;
  }
}
.bottomMenu-navigation ul li {
  float: left;
}
@media (max-width: 767px) {
  .bottomMenu-navigation ul li {
    padding: 0 8px;
  }
}
@media (min-width: 768px) {
  .bottomMenu-navigation ul li {
    padding: 0 18px;
  }
}
.bottomMenu-navigation ul li a {
  display: inline-block;
  color: #1a1a1a;
  text-decoration: none;
}
.bottomMenu-sns {
	text-align: center;
	font-size: 0;
	line-height: 1;
	margin-bottom: 30px;
}
.bottomMenu-sns ul {
  display: inline-block;
  margin: 0;
  padding-left: 0;
  list-style-type: none;
  font-size: 24px;
}
.bottomMenu-sns ul::after {
  display: block;
  clear: both;
  content: "";
}
.bottomMenu-sns ul li {
  float: left;
  padding: 0 5px;
}
.bottomMenu-sns ul li a {
  display: inline-block;
}
.bottomMenu-sns ul li a img {
  vertical-align: bottom;
}
#pagetop #description .section-body .left {
	text-align: left;
}

.content {
  box-sizing: border-box;
  padding-top: 53px;
  min-height: calc(100vh - 30px);
}
@media (max-width: 767px) {
  .content {
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .content {
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .content-header {
    display: none;
  }
}
@media (min-width: 768px) {
  .content-header {
	margin-top: 0;
	margin-bottom: 48px;
	text-align: center;
	font-size: 18px;
	line-height: 32px;
  }
}

.footer {
  position: relative;
  height: 30px;
  background-color: #000;
}

.footer img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style]{
	width: 100% !important;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}
