.sp-only{display: block; z-index: 70;}
.sp_ls-only{display: none;}
.pc-only{display: none;}

body{text-align: center;}

.head{
  top: 0;
  width: 100%; 
  text-align: center; 
  background-color: #fff;
}
.logo_obi{
  background-color: rgb(25, 168, 244);/* sRBG */
}

.top_logo_image{
  width: 50%;
  height: auto;
  padding: 17px 0 5px 0;
}
.top_logo{
  width: 70%; 
  margin: 2px auto;
  padding: 7px 0;
}

.title{
  font-size: 18px; 
  margin: 5px 0px;
}

.top_image{
  width: 100%; 
  margin: 0px;
}
.top_image img{
  width: 100%; 
  height: auto;
  margin: 10px auto 10px;
}

.gmap_wrap{ 
  width: 100%; 
  height: 500px;
}
.gmap{ 
  width: 100%; 
  height: 100%;
}
.gmap iframe{ 
  width: 100%; 
  height: 100%;
}

.visual_carousel_wrap{
  width: auto; height: 60vh; margin: 20px auto;
  overflow: hidden;
  position: relative;
}
.visual_carousel_img/* , .visual_carousel_img_webp, .visual_carousel_img_jpg */{
  height: 60vh;
}

.bottom{
  width: 100%; 
  text-align: center; 
  margin: 0; 
  background-color:#fff;
  display: block;
}
.bottom img{
  width: 60%; 
  margin: auto;
}
.bottom p{
  font-size: 14px;
  color:rgb(32, 33, 36);
}

#foot{
  position:fixed; 
  bottom:0; 
  width:100%; 
}
#foot p{ 
  color:#fff; 
  text-align:center; 
  /* padding:5px 0; */ 
  font-size:12px;
}
#foot i{
  color: #fff;
}
#foot ul#footer_spbtn{ 
  /* z-index: 70; */
  /* padding:5px 0 5px 0; */
  /* opacity: 1; */
}
#foot ul#footer_spbtn li{ 
  float:left; 
  width:50%;
}
#foot ul#footer_spbtn li a{ 
  width:90%; 
  font-size:20px; 
  font-weight: 600;
  background-color:rgba(30,170,141,1); /* sRBG */
  display:block;
  text-align:center;
  text-decoration:none;
  color:#fff;
  margin:2px auto;
  border-radius: 5px;    /* CSS3草案 */  
  -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
  -moz-border-radius: 5px;   /* Firefox用 */
}
#foot ul#footer_spbtn li a:active{
  background-color:rgb(80, 201, 177);
}

/* ハンバーガーメニュー */
.menu_btn{
  position: fixed;
  top: 20px;
  right: 15px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: rgba(253, 149, 0, 0.9);
  border-radius: 25px;
}
.menu_btn span, .menu_btn span::before, .menu_btn span::after{
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
}
.menu_btn span:before{
  bottom: 8px;
}
.menu_btn span:after{
  top: 8px;
}
#menu_btn_check:checked ~ .menu_btn span{
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
#menu_btn_check:checked ~ .menu_btn span::before{
  bottom: 0;
  transform: rotate(45deg);
  transition: all 0.3s;
}
#menu_btn_check:checked ~ .menu_btn span::after{
  top: 0;
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.menu_content{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: rgba(255, 255, 255, 0.95);
  transition: all 0.5s;
}
.menu_content ul{
  padding: 70px 10px 0;
}
.menu_content ul li{
  border-bottom: solid 1px rgb(32, 33, 36);
  list-style: none;
}
.menu_content ul li a{
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  box-sizing: border-box;
  color: rgb(32, 33, 36);
  text-decoration: none;
  padding: 14px 15px 15px 0;
  position: relative;
}
.menu_content ul li a:active{
  background-color: rgb(255, 199, 121);
}
/*
.menu_content ul li a::before{
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
*/
#menu_btn_check:checked ~ .menu_content {
  left: 0;/*メニューを画面内へ*/
}