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;
	background-repeat: repeat;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #000;
}

@media (max-width: 767px) {
  .brDesktop {
    display: none;
  }
}
@media (min-width: 768px) {
}
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: #000;
	content: "";
}
@media (max-width: 767px) {
}
@media (min-width: 768px) {
}

.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: 5px;
  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_logo a img {
    width: 180px;
    height: 37px;
  }
}

.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: 11px 11px 16px;
  }
}
@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: normal;
	font-family: Oswald, sans-serif;
	font-size: 18px;
	color: #333;
}
@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;
	text-align: center;
	font-size: 14px;
  }
}

@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;
  }
}
@media (min-width: 768px) {
  #description .section-body > div {
    font-size: 14px;
  }
}
#description .section-body > div p {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 14px;
	text-align: center;
}
#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;
  }
}
@media (min-width: 768px) {
  #description .section-body > div:first-child {
    font-size: 19px;
    line-height: 48px;
  }
}
@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;
  }
}
#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: 10px solid #e0e0dd;
}
#about .section-subheader::before {
  border-right: 10px solid #e0e0dd;
}
#about .section-subheader img {
  vertical-align: middle;
}
#about .section-body {
	text-align: center;
	font-size: 14px;
}
#about .section-body .about-phone {
  font-size: 21px;
}
#about .section-body .about-address {
  font-size: 12px;
}
#about .section-body h2 {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
	line-height: 20px;
}
#about .section-body h3 {
	font-weight: normal;
	color: #069;
}
#about .section-body h4  {
	font-size: 18px;
	color: #FFF;
	margin-top: 30px;
	background-color: #036;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: normal;
	margin-bottom: 60px;
	background-image: url(../img/h4bg.png);
	background-repeat: repeat;
}
#about .section-body h5  {
	font-size: 18px;
	color: #069;
	padding: 0px;
	margin-top: 50px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
	font-weight: normal;
}
@media (min-width: 768px) {
#about .section-body p {
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	line-height: 30px;
	text-align: left;
	width: 500px;
}
}
@media (max-width: 767px) {
#about .section-body p {
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	line-height: 30px;
	text-align: left;
	width: 97%;
}
}


#about .section-body .info  {
	text-align: center;
	font-size: 14px;
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}
#about .section-body .info .phone {
	font-size: 18px;
	font-weight: bold;
}
#about .section-body .center {
	text-align: center;
}

@media (min-width: 768px) {
#about .section-body .pcimg {
	height: 300px;
	width: 500px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	background-image: url(../img/about-img.jpg);
}
}

@media (max-width: 767px) {
#about .section-body .pcimg {
	display: none;
}
}

@media (min-width: 768px) {
#about .section-body .smimg {
	display: none;
}
}

@media (max-width: 767px) {
#about .section-body .smimg {
	width: 300px;
	height: 210px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	background-image: url(../img/about-img2.jpg);
}
}



#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;
}
#news .section-body ul li::after {
  display: block;
  clear: both;
  content: "";
}
#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;
}
}
#menu .section-body h2 {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
	line-height: 20px;
}
#menu .section-body h4  {
	font-size: 18px;
	color: #FFF;
	margin-top: 30px;
	background-color: #036;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: normal;
	margin-bottom: 40px;
	background-image: url(../img/h4bg.png);
	background-repeat: repeat;
}
#menu .section-body h5  {
	font-size: 18px;
	color: #069;
	padding: 0px;
	margin-top: 50px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
	font-weight: normal;
}
@media (min-width: 768px) {
#menu .section-body p {
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	line-height: 30px;
	text-align: left;
	width: 500px;
}
}
@media (max-width: 767px) {
#menu .section-body p {
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	line-height: 30px;
	text-align: left;
	width: 97%;
}
}
#menu .section-body .center {
	text-align: center;
	padding: 0px;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}


#price .section-body {
	text-align: center;
	font-size: 14px;
	line-height: 36px;
}

#price .section-body .reservation-description {
  margin-bottom: 20px;
}
#price .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;
}

#price .section-body {
	text-align: center;
}
}
#price .section-body h2 {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
	line-height: 20px;
}
#price .section-body h4  {
	font-size: 18px;
	color: #FFF;
	margin-top: 30px;
	background-color: #036;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: normal;
	margin-bottom: 40px;
	background-image: url(../img/h4bg.png);
	background-repeat: repeat;
}
#price .section-body .reservation-description .use ul {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 20px;
}
#description .section-body div h3 {
	font-size: 16px;
	text-align: center;
	padding: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}

#price .section-body .reservation-description .use ul li {
	margin: 0px;
	padding: 0px;
}


#price .section-body h5  {
	font-size: 18px;
	color: #069;
	padding: 0px;
	margin-top: 50px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
	font-weight: normal;
}
@media (min-width: 768px) {
#price .section-body p {
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	line-height: 30px;
	text-align: left;
	width: 500px;
}
}
@media (max-width: 767px) {
#price .section-body p {
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	line-height: 30px;
	text-align: left;
	width: 97%;
}
}

@media (min-width: 768px) {
#price .section-body .reservation-description .use {
	padding-left: 15px;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #036;
	margin-left: auto;
	width: 480px;
	text-align: left;
	margin-right: auto;
	margin-bottom: 15px;
}
}
@media (max-width: 767px) {
#price .section-body .reservation-description .use {
	padding-left: 15px;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #036;
	margin-left: auto;
	width: 97%;
	text-align: left;
	margin-right: auto;
	margin-bottom: 15px;
}
}

#price .section-body .reservation-description .use dl {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 5px;
}

#price .section-body .reservation-description .use dl dt {
	padding: 0px;
	float: left;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	text-align: right;
}
#price .section-body .reservation-description .use dl dd {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 70px;
	padding: 0px;
}




#price .section-body .reservation-description .use h5 {
	font-size: 16px;
	padding: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}

#case .section-body {
	font-size: 14px;
	line-height: 36px;
}
#case .section-body .center {
	text-align: center;
}

@media (min-width: 768px) {
#case .section-body .case-description ul {
	width: 500px;
	margin-right: auto;
	margin-left: auto;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}
}

@media (max-width: 767px) {
#case .section-body .case-description ul {
	width: 97%;
	margin-right: auto;
	margin-left: auto;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: left;
}
}

#case .section-body .case-description ul dt {
	margin: 0px;
	padding: 0px;
	font-size: 16px;
	color: #069;
}
#case .section-body .case-description ul dd {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 10px;
}


#case .section-body .case-description {
  margin-bottom: 20px;
}
#case .section-body .case-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;
  }
}
#pagetop #access .section-body p {
	text-align: center;
}
#access .section-body p .phone {
	font-size: 18px;
	font-weight: bold;
}


#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;
	padding-top: 16px;
  }
}
@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: #036;
}
.footer {
}

.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: #036;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-left-color: #FFF;
}

.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;
}
.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;
}

.content {
	box-sizing: border-box;
	padding-top: 65px;
	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;
  }
}

  .content-header {
	margin-top: 50;
	margin-bottom: 20px;
	text-align: center;
	font-size: 18px;
	line-height: 32px;
	padding-top: 50px;
  }

.footer {
	position: relative;
	height: 30px;
	background-color: #000;
	font-size: 10px;
	color: #FFF;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	padding-top: 5px;
}


.footer img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

h2 {
	font-size: 16px;
}

.news {
  margin-right: 15px;
  margin-left: 15px;
}
@media (max-width: 767px) {
  .news {
    margin-bottom: 79px;
  }
}
@media (min-width: 768px) {
  .news {
    margin-bottom: 94px;
  }
}
.news_header {
  margin: 0 auto;
  max-width: 500px;
  border-bottom: 1px solid #000;
  text-align: center;
  font-size: 11px;
  line-height: 1;
}
.news_header img {
  margin-bottom: 17px;
}
.news_list {
  margin: 0 auto;
  max-width: 500px;
}
.news_item {
  padding: 8px;
  border-bottom: 1px dashed #000;
}
.news_item_date {
  margin-bottom: 5px;
  color: #999;
  font-size: 11px;
}
.news_item_content a {
  word-wrap: break-word;
}
.gc_wrapper {
	max-width: 800px;
	min-width: 300px;
	margin-top: 2.0833%;
	margin-right: auto;
	margin-bottom: 2.0833%;
	margin-left: auto;
	padding-top: 100px;
}
 
.responsive-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.responsive-iframe-container iframe,   
.responsive-iframe-container object,  
.responsive-iframe-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
 
@media (max-width: 600px) {
    .big-container {
        display: none;
    }
    .small-container {
       padding-bottom: 200%;   /* 高さ */
    }
}
@media (min-width: 600px) {
    .small-container {
        display: none;
    }
}
