@charset "UTF-8";

html {
  font-size: 100%;
  font-family: "Kosugi Maru", sans-serif;
}
body {
  font-family: "游ゴシック", "YuGothic", "メイリオ", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 0.9rem;
}

a {
  text-decoration: none;
  color: #4F4F4F;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}

/*-------------------------------------------
メニュー
-------------------------------------------*/

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
::before , ::after {
	box-sizing: inherit;
}
button {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
/* .open_btn {
	ボタンの配置位置 
	position: fixed;
	top: 15px;
	left: 16px;
	最前面に
	z-index: 10;
	ボタンの大きさ
	width: 30px;
	height: 30px;
}*/
/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 2px;
	/* バーガー線の色 */
	background-color: #4F4F4F;
	transition: .2s;
}
/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #4F4F4F;
	transition: .5s;
}
.btn-line::before {
	/* 上の線の位置 */
	transform: translateY(-10px);
}
.btn-line::after {
	/* 下の線の位置 */
	transform: translateY(10px);
}
/***** メニューオープン時 *****/
.btn-line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
}
.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: #4F4F4F;
	transition: .2s;
}
.btn-line.open::before {
	/* 上の線を傾ける */
	transform: rotate(45deg);
}
.btn-line.open::after {
	/* 上の線を傾ける */
	transform: rotate(-45deg);
}
/**************** ここまで、ハンバーガーボタンのスタイリング ****************/

/**************** 以下、メニューのスタイリング ****************/
.menu {
	/* メニューを縦に */
	display: flex;
	flex-direction: column;
	position: fixed;
	/* メニューの位置マイナス指定で画面外に */
	right: -70%;
	width: 30%;
	height: 50vh;
	background-color: rgba(255,255,255,0.75);
	color: #4F4F4F;
	/* transition: .3s; */
  z-index: 1
}
.menu-list{
	/* メニューテキスト位置をリスト内中心に */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
  text-align: center;
  padding-top: 15px;
}
.menu-list a{
  width: 100%;
  height: 100%;
}
.menu-list:hover {
	background-color: #81C1BF;
	cursor: pointer;
	transition: .3s;
}
.menu-list:hover a{
  color: #fff;
  transition: .3s;
}
.menu-list.active {
  background-color: #81C1BF;
  cursor: pointer;
  transition: .3s;
}
.menu-list.active a{
  color: #fff;
}
/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
	position: absolute;
  top: 50px;
	left: 0;
}

/* 600px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (min-width: 580px) {
/*	.open_btn {
		display: none;
	}*/	.menu {
		/* メニューを横に */
		display: flex;
		flex-direction: row;
		position: relative;
		top: 0;
		right: 0;
		width: 100%;
		height: 70px;
    margin: 0 auto;
	}
  li+ li {
    border-left: 1px solid #C6DBDB;
  }
}
@media screen and (max-width: 580px){
  .menu{
    width: 100%;
    background-color: #81C1BF;
    right: 0;
    bottom: 0;
    flex-direction: row;
    margin-bottom: 0;
    height: fit-content;
    z-index: 5;
  }
  .menu.open{
    position: fixed;
    top: 0;
  }
  .menu-list{
    border-left: 1px solid #C6DBDB;
    padding: 32px 0;
  }
  .menu-list a{
    color: #fff;
    letter-spacing: 0;
    font-size: 0.9rem;
  }
}

li a {
  color: #4F4F4F;
  font-size: 1.0rem;
  letter-spacing: 0.12em;
  margin: 0 auto;
  display: block;
}

li a:hover {
  color: #fff;
  text-decoration: none;
  transition: 0.2s ;
}

.breadcrumb{
  justify-content: center;
  background-color: #fff!important;
}

.breadcrumb li.breadcrumb-item a{
  display: inline;
  font-size: 0.8rem;
}

.breadcrumb li.breadcrumb-item a:hover{
  color: #81C1BF;
}

.breadcrumb  li+ li {
    border-left: none;
  }


ul.list-group li.list-group-item > a:hover {
  color: #81C1BF;
}

.sub_nav {
  font-size: 0.5rem;
  letter-spacing: 0;
  text-align: center;
}
/**************** ここまで、メニューのスタイリング ****************/

/*-------------------------------------------
メインビジュアル
-------------------------------------------*/
.main{
  position: relative;
  display: inline-block;
}

.mainvisual {
  display: block;
	position: relative;
	width: 100%;
	height: auto;
}

/* .mainvisual::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
  width: 100%;
	height: 100%;
	background-image: linear-gradient(180deg, transparent 0 15%, #FFF 100%);
} */

.mainlogo img{
  position: absolute;
  right: 23%;
  bottom: 12%;
  width: 55%;
  height: auto;
  z-index: 0;
}

.maintext img{
    position: absolute;
    right: 31%;
    top: 27%;
    width: 40%;
    height: auto;
    z-index: 2;
}
@media screen and (max-width: 580px){
  .mainvisual{
    width: auto;
    height: 30vh;
    display: block;
  }
  .maintext img{
    z-index: 1!important;
    width: 88%;
    right: 6%;
    top: 18%;
    background: rgba(255,255,255,.8);
  }
}

/*-------------------------------------------
サブビジュアル（各カテゴリートップ）
-------------------------------------------*/
.subheader{
  overflow: hidden;
}

.subheader .sublogo{
  float: left;
}

.subheader .sublogo img{
  max-width: 550px;
  padding: 20px;
}

.subheader .right-area{
  float: right;
}

.subheader .right-area{
  display: flex;
  flex-direction: column;
}

.subheader .right-area .reserve-btn{
  display: flex;
  flex-direction: row;
}

.subheader .right-area .button003 a{
  margin: 0 .5rem .5rem 0;
  width: 200px;
}

.subheader .right-area .button004 a{
  margin: 0 .5rem .5rem 0;
  width: 200px;
}

.subheader .tel{
  font-size: 110%;
  margin: 0.5rem auto 0.5rem auto;
  text-align: right;
  width: 86%;
}

.subheader .tel a{
  color: #000;
}

.sub-mainvisual{
  clear: both;
}
@media screen and (max-width: 768px){
  .subheader .sublogo img{
    max-width: 490px;
    padding: 20px;
  }
  .subheader .tel{
    margin-top: 40px;
  }
}

@media screen and (max-width: 580px){
  .subheader .sublogo img{
    max-width: 100%;
    padding: 20px;
  }
  .subheader .right-area{
    width: 90%;
    text-align: center;
    margin: 0 auto;
    float: initial;
  }
  .subheader .tel{
    margin-top: 0;
    text-align: center;
  }
  .subheader .right-area .reserve-btn{
    justify-content: center;
    flex-wrap: wrap;
  }
  .subheader .right-area .button003 a{
    max-width: 160px;
  }
  .subheader .right-area .button004 a{
    margin-right: 0;
    max-width: 160px;
  }
}

/*-------------------------------------------
お知らせ
-------------------------------------------*/
.news{
  display: flex;
  justify-content: center;
  margin: 3% auto;
}

.newslogo{
  width: 80px;
  height: 80px;
  position: relative;
}

.box1 {
    padding: 0.5em 1em;
    margin: 0.7em 0 0 0.5em;
    font-weight:normal;
    color: #4F4F4F;/*文字色*/
    background: #FFF;
    border: solid 1.5px #C6DBDB;/*線*/
    border-radius: 6px;/*角の丸み*/
  	height: 55px;/*スクロールの高さ*/
    max-width: 750px;
    width: 70%;
  	overflow-y: scroll;
}
.box1 p {
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 580px){
  .newslogo{
    width: 70px;
    height: 70px;
    position: relative;
  }
  .box1 {
      border-radius: 5px;/*角の丸み*/
    	height: 80px;/*スクロールの高さ*/
      width: 75%;
    	overflow-y: scroll;
      margin-bottom: 20px;
  }
  .box1 p {
      font-size: 0.8rem;
      margin: 0;
      padding: 0;
    }
}

/*-------------------------------------------
診療時間
-------------------------------------------*/
.consultation-hours h2{
  margin: 3% auto;
  color: #4F4F4F;
  font-size: 1.0rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 0 0.5rem;
  border-bottom: 0.75px solid #C6DBDB;
  width: 120px;
}

@media screen and (max-width: 580px){
  .consultation-hours h2{
    font-size: 0.8rem;
  }
}

.consultation{
  display: flex;
  justify-content: center;
  margin: 3% auto;
}
.map01 {
  max-width: 350px;
  margin-left: 20px;
  position: relative;
}

.open-hour {
  display: block;
  border-collapse: collapse;
  overflow-x: scroll;
  color: #4F4F4F;
  font-size: 0.9rem;
}

.open-hour th, .open-hour td {
  padding: 10px 20px;
  text-align: center;
}

.open-hour th, .open-hour td {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
}

table{
    border-collapse: collapse;
    border: none;
}
td,th{
    border: none;
    border-left: 0.5px solid #9A9A9A;
    border-top: 0.5px solid #9A9A9A;
}
td:first-child,th:first-child{
    border-left:none;
}
tr:first-child td,tr:first-child th{
    border-top:none;
}

@media screen and (max-width: 580px){
  table.open-hour{
    width: auto;
    justify-content: center;
    display: flex;
  }
 table.open-hour th,table.open-hour td{
    display: block;
    width: auto;
    padding: 1em;
    border: none;
  }
  table.open-hour thead{
    display: flex;
    float: left;
  }
  table.open-hour thead th:first-child:before{
    padding: 1em;
  }
  table.open-hour tbody{
    display: flex;
    width: auto;
  }
  table.open-hour tbody tr{
    display: flex;
    flex-direction: column;
  }
}

.con-detail{
  margin: 20px 0 0 20px;
}

.con-detail p{
  color: #4F4F4F;
  font-size: 0.8rem;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 300;
}

@media screen and (max-width: 820px) {
  .consultation{
    display: block;
    margin: 0 10px;
  }
  .open-hour {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    max-width: 350px;
    margin: 0 auto;
  }
  .open-hour th {
    padding: 6px 10px;
  }
  .open-hour td {
    padding: 6px 5px;
  }
  .con-detail{
    max-width: 350px;
    margin: 20px auto;
  }
  .con-detail p{
    font-size: 0.7rem;
  }
  .map01 {
    margin: 20px auto 0;
  }
}

/*-------------------------------------------
新規予約
-------------------------------------------*/

.reserve h2{
  margin: 5% auto 5px;
  color: #4F4F4F;
  font-size: 1.0rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 0 0.5rem;
  border-bottom: 0.75px solid #C6DBDB;
  width: 300px;
}

.reserve p{
  margin: 0 auto 3%;
  color: #4F4F4F;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.reserve .reserve-contact-area{
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  margin: 0 auto 8rem;
}

.reserve .reserve-contact-area .button003{
  margin: 0 1%;
}
.reserve .reserve-contact-area .button003 a{
  width: 100%;
}

@media screen and (max-width: 580px){
  .reserve h2{
    font-size: 0.8rem;
    margin-top: 40px;
  }
  .reserve p{
    margin: 0 auto 5%;
  }
  .reserve .reserve-contact-area{
    flex-direction: column;
    margin: 0 1rem;
  }
}

/*-------------------------------------------
予約に関する注意
-------------------------------------------*/
.note{
  background-color: #81C1BF;
  display: flex;
  margin: 50px auto 0;
  padding: 30px 0;
  justify-content: center;
}
.logo-wh{
  width: 60px;
  margin: 0 3% 0 0;
}

.note p{
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (max-width: 580px){
  .note{
    margin: 50px auto 0;
    padding: 20px 10px;
    justify-content: center;
    display: block;
  }
  .logo-wh{
    width: 45px;
    margin: 0 auto 10px;
    text-align: center;
  }
  .note p{
    font-size: 1rem;
  }
}

/*-------------------------------------------
訪問診療
-------------------------------------------*/
.home-visit-container{
}
.home-visit{
  width: 80%;
  padding: 30px 50px;
  text-align: center;
  margin: 50px auto;
  background: #fff;
  border: 10px solid #81C1BF;
}

.home-visit h2{
  margin: 3% auto;
  color: #4F4F4F;
  font-size: 1.0rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 0 0.5rem;
  border-bottom: 0.75px solid #C6DBDB;
  width: 120px;
}

.home-visit p{
  font-size: 1rem;
  text-align: left;
}
.home-visit .lead{
  margin: 50px auto 100px;
  width: 60%;
}

.home-visit h3{
  margin: 3% auto;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 0 0.5rem;
}

.home-visit .home-visit-flow ul{
  width: 80%;
  margin: 0 auto;
}

.home-visit .home-visit-flow ul{
  display: flex;
  flex-direction: row;
  margin-bottom: 5rem;
}
.home-visit .home-visit-flow ul li{
  width: 100%;
  padding: 0 1%;
}
.home-visit .home-visit-flow ul li dt{
  margin-bottom: 1rem;
}
.home-visit .home-visit-flow ul li dd{
  text-align: left;
}
.home-visit .home-visit-contact{
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  margin: 0 auto 3rem;
}
.home-visit .home-visit-contact .button003{
  margin: 0 1%;
}
.home-visit .home-visit-contact .button003 a{
  width: 100%;
}
@media screen and (max-width: 820px){
  .home-visit{
    width: 95%;
    padding: 30px 10px;
  }
  .home-visit .lead{
    width: 90%;
  }
  .home-visit .home-visit-flow ul{
    flex-direction: column;
  }
  .home-visit .home-visit-contact{
    flex-direction: column;
  }
}

/*-------------------------------------------
サブカテゴリーページの指定
-------------------------------------------*/
.sub-category-content{
    text-align: center;
    margin: 0 auto;
    width: 80%;
}

.sub-category-content h2{
  margin: 5% auto 5px;
  color: #4F4F4F;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 0 0.5rem;
  border-bottom: 0.75px solid #C6DBDB;
  width: 300px;
}

#news h2{
  width: fit-content;
}
#news .article h2{
  margin: 5rem auto 3rem;
}
#news .article ul{
  margin: 2rem auto;
}
#news .article ul li{
  margin: 1rem auto 1rem 1.5rem;
}
#news .article ul li+ li{
  border: none;
}

#column h2{
  width: fit-content;
}
#column .article h2{
  margin: 5rem auto 3rem;
}
#column .article ul{
  margin: 2rem auto;
}
#column .article ul li{
  margin: 1rem auto 1rem 1.5rem;
}
#column .article ul li+ li{
  border: none;
}

@media screen and (max-width: 768px){
  .sub-category-content{
    width: 90%;
  }
}
@media screen and (max-width: 580px){
  .sub-category-content{
    width: 90%;
  }
}

/*-----　トップページ：診療方針　-----*/
.sub-category-content#mission h3{
  margin: 50px auto;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.2rem;
  line-height: 150%;
}

.sub-category-content#mission .content-body{
  min-height: 640px;
  position: relative;
}

.sub-category-content#mission .content-body img.bg-content-body{
  position: absolute;
  top: 0;
  right:  0;
  width: 800px;
  z-index: 0;
}

.sub-category-content#mission .content-body p{
  z-index: 3;
  position: absolute;
  top: 40px;
  left: 0;
  text-align: left;
  background-color: rgba(255,255,255,.8);
  line-height: 200%;
  padding: 40px 20px;
}
@media screen and (max-width: 580px){
  .sub-category-content#mission h3{
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  .sub-category-content#mission .content-body{
    min-height: initial;
  }
  .sub-category-content#mission .content-body p{
    position: relative;
    top: 0;
    line-height: 150%;
  }
}

/*-----　診療方針ページ　-----*/
#medicalguide .content-body p{
  text-align: left;
}

/*-----　職員募集ページ　-----*/
#recruit .content-body p{
  text-align: left;
}


/*-----　スタッフページ　-----*/
.sub-category-content#staff .staff-area{
  width: 80%;
  max-width: 1200px;
  margin: 50px auto;
  overflow: hidden;
}
.sub-category-content#staff h3{
  font-size: 2rem;
  padding: 0 1.5rem 0.5rem;
  border-bottom: 0.75px solid #C6DBDB;
  text-align: left;
  width: fit-content;
  letter-spacing: 0.1rem;
}

.sub-category-content#staff p.position{
  margin: 20px 0 40px 50px;
  font-size: 1.2rem;
  line-height: 130%;
  text-align: left;
}

.sub-category-content#staff .career{
  margin: 0 50px;
  text-align: left;
  font-size: 0.9rem;
}

.sub-category-content#staff .career .left{
  width: 48%;
  float: left;
  overflow: hidden;
}

.sub-category-content#staff .career .right{
  width: 48%;
  float: right;
  overflow: hidden;
}

.sub-category-content#staff .career h4{
  font-size: 1rem;
}

.sub-category-content#staff .career ul{
  margin-left: 1rem;
  overflow: hidden;
}

.sub-category-content#staff .career ul li{
  border: none;
}

.sub-category-content#staff .career ul li dl dt{
  clear: both;
  width: 150px;
  float: left;
  font-weight: normal;
}

.sub-category-content#staff .career ul li dl dd{
  width: calc(100% - 160px);
  float: left;
}
@media screen and (max-width: 768px){
  .sub-category-content#staff .staff-area{
    width: 90%;
  }  
  .sub-category-content#staff p.position{
    margin: 40px 0;
    font-size: 1.1rem;
  }  
  .sub-category-content#staff .career{
    margin: 0;
  }
  .sub-category-content#staff .career ul li dl dt{
    clear: both;
    width: 100%;
    float: none;
    font-weight: normal;
  }
  .sub-category-content#staff .career ul li dl dd{
    width: 100%;
    float: none;
  }
}

@media screen and (max-width: 580px){
  .sub-category-content#staff h3{
    font-size: 1.5rem;
    text-align: center;
    margin: 0 auto;
    border-bottom: none;
  }
  .sub-category-content#staff .staff-area{
    width: 90%;
  }
  .sub-category-content#staff p.position{
    margin: 20px 0 40px 0px;
    font-size: 1.1rem;
  }
  .sub-category-content#staff .career{
    margin: 0;
  }
  .sub-category-content#staff .career .left{
    width: 100%;
    float: none;
    margin-bottom: 30px;
  }
  .sub-category-content#staff .career .right{
    width: 100%;
    float: none;
  }
}

/*-----　アクセスページ　-----*/
.sub-category-content#access .caption{
  font-size: 0.9rem;
}
.sub-category-content#access .access-info{
  width: 80%;
  max-width: 1000px;
  margin: 50px auto;
  overflow: hidden;
}
.sub-category-content#access .access-info p{
  text-align: left;
  font-size: 1.2rem;
}
@media screen and (max-width: 580px){
  .sub-category-content#access .access-info a p.caption{
    font-size: .9rem;
    color: #000;
    text-align: center;
    margin: 0 auto;
  }
}

/*-----　新規予約ページ　-----*/

.sub-category-content#reservation .caption{
  font-size: 0.9rem;
}
.sub-category-content#reservation .reservation-info{
  width: 80%;
  max-width: 1000px;
  margin: 50px auto;
  overflow: hidden;
}
.sub-category-content#reservation .reservation-info p{
  text-align: left;
  font-size: 1.2rem;
}

@media screen and (max-width: 580px){
  .sub-category-content#reservation .reservation-info{
    width: 100%;
  }
}


/*-------------------------------------------
footer
-------------------------------------------*/
.footarea-gray {
  background-color: #ECF1F1;
  width: 100%;
  padding: 15px;
}

.footarea-wh {
  background-color: #fff;
  width: 100%;
  padding: 1rem;
}

.foot-contents{
  display: flex;
  justify-content: center;
  padding: 15px 0;
}
.foot-reserve{
  display: flex;
}
.foot-detail{
  margin-right: 10%;
}

.foot-tel{
  margin-top: 10px;
}

.foot-tel h3{
  color: #4F4F4F;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
.foot-tel h4{
  color: #4F4F4F;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin: 2px auto 0;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 300;
}

.button003 a {
    background: #81C1BF;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 10px auto 0;
    width: 200px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 300;
    letter-spacing: 0.1em;
}
.button003 a:hover {
    background: #177F7A;
    text-decoration: none;
    color: #FFF;
}

.button004 a {
    background: #c1a683;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 10px auto 0;
    width: 180px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 300;
    letter-spacing: 0.1em;
}
.button004 a:hover {
    background: #177F7A;
    text-decoration: none;
    color: #FFF;
}

#footer{
  clear: both;
}
#footer .open-hour {
  display: block;
  border-collapse: collapse;
  overflow-x: scroll;
  color: #4F4F4F;
  font-size: 0.8rem;
  margin: 2rem auto;
}
#footre .open-hour th, .open-hour td {
  padding: 10px;
  text-align: center;
}
#footer .map01 {
  max-width: 450px;
  position: relative;
}
#footer p{
  color: #4F4F4F;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 300;
}

#footer h5 {
  font-size: 0.5rem;
  color: #7B7B7B;
  padding: 10px 0;
  text-align: center;
}
@media screen and (max-width: 768px){
  footer{
    margin-bottom: 300px;
  }
  .foot-reserve{
    display: block;
  }
  .button003 a{
    width: 90%;
    margin-bottom: 20px;
  }
  .foot-contents{
    padding: 10px 20px;
  }
}

@media screen and (max-width: 580px){
  footer{
    margin-bottom: 80px;
  }
  .foot-contents{
    display: block;
    padding: 10px;
  }
  .foot-reserve{
    display: block;
  }
  .button003 a{
    width: 90%;
    margin-bottom: 20px;
  }
  #timerex_calendar{
    width: 90%!important;
    margin: 0 auto;
  }
}

/*-------------------------------------------
その他
-------------------------------------------*/
.pc-only{
  display: block;
}
.sp-only{
  display: none;
}
@media screen and (max-width: 580px){
  .pc-only{
    display: none;
  }
  .sp-only{
    display: block;
  }
}
