html {
  overflow-y: scroll;
}

body {
	padding-top: 70px;
	background-color: #fff;
	color: #000;
	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;
  }
}
img {
  vertical-align: bottom;
}

.navigation img {
  display: block;
}
.navigation_bar {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	width: 100%;
	height: 70px;
	background-color: #FFFFFF;
}
.navigation_bar_inner {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  max-width: 1024px;
  height: inherit;
}
.navigation_logo {
  position: absolute;
  top: 11px;
  left: 28px;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-size: 49px;
  line-height: 1;
}
.navigation_logo a {
  display: inline-block;
  vertical-align: top;
}
.navigation_button {
  position: absolute;
  top: 14px;
  z-index: 200;
}
@media (max-width: 767px) {
  .navigation_button {
    right: 11px;
  }
}
@media (min-width: 768px) {
  .navigation_button {
    right: 22px;
  }
}
.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;
  top: 70px;
  z-index: 100;
  width: 100%;
  background-color: #fff;
  pointer-events: none;
}
@media (max-width: 767px) {
  .navigation_menu {
    -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 {
    visibility: hidden;
    height: calc(100% - 70px);
    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;
}
@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 a {
	display: inline-block;
	vertical-align: top;
	line-height: 25px;
	padding-top: 15px;
	padding-right: 11px;
	padding-bottom: 15px;
	padding-left: 11px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
}
.navigation_menu ul li.nav-sns a {
	padding: 11px;
}

.footer {
	height: 50px;
	color: #000;
	text-align: center;
	font-size: 11px;
	line-height: 50px;
}
@media (max-width: 767px) {
  .footer {
    letter-spacing: 0.5px;
  }
}
@media (min-width: 768px) {
  .footer {
    letter-spacing: 1px;
  }
}
.pageTop .content h3 {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}
@media (min-width: 768px) {
.pageTop .content .calender-info {
	width: 400px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 40px;
}
}
@media (max-width: 767px) {
.pageTop .content .calender-info {
	width: 94%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 40px;
}
}
