@charset "utf-8";

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav ul {
    text-align: center;
    padding-bottom: 50px;
}

nav ul li {
    border-left: 1px solid #A28C63;
    display: inline-block;
    list-style: none;
    margin: 0;
}

nav ul li:first-child {
    border-left: none;
}

nav ul li a {
    text-decoration: none;
    color: #A28C63;
    padding: 0 1em;
}

@media screen and (max-width:768px) {
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
}

nav.globalMenuSp ul {
  background: #ccc;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

/*flex解除*/
.flex {
  flex-direction: column;
  padding: 0;
}

.box {
  margin: 0 auto;
}

main {
  max-width: 100%;
}

.main {
  padding: 0;
}

.ttl_menu img {
  max-width: 100%;
}
}

main {
  width: 530px;
  margin: auto;
  padding-bottom: 50px;
}

.infomation, .news {
  margin: 0 auto;
}

h2 {
  color: #A28C63;
  text-align: center;
}

.container {
    position: relative;
    margin: 0 auto;
    width: 300px;
    height: 200px;
  }
  .image {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: change-img-anim 30s infinite;
  }
  .image:nth-of-type(1) {
    animation: change-img-anim-first 30s infinite;
    animation-delay: 0s;
  }
  .image:nth-of-type(2) {
    animation-delay: 10s;
  }
  .image:nth-of-type(3) {
    animation-delay: 20s;
  }
  @keyframes change-img-anim-first {
    0%{ opacity: １;}
    30%{ opacity: 1;}
    36%{ opacity: 1;}
    45%{ opacity: 0;}
    100%{ opacity: 0;}
  }
  @keyframes change-img-anim {
    0%{ opacity: 0;}
    30%{ opacity: 1;}
    36%{ opacity: 1;}
    45%{ opacity: 0;}
    100%{ opacity: 0;}
}

.biz-hour {
    padding: 20px;
    margin: 20px auto;
    border-collapse: collapse;
    /* overflow-x: scroll;で、
    スマホ画面幅に表が入りきらない場合は
    横スクロールしてくれます */
    overflow-x: scroll;
  }

  .biz-hour th {
    /* １番上の線 */
    /* #A28C63っていうのが色の名前なので、ここをお好みで */
    border-top: 1px solid #A28C63;
  }
  
  .biz-hour th, .biz-hour td {
    padding: 10px 20px;
    text-align: center;
    /* ２番目以降の線 */
    /* 色はお好みで */
    border-bottom: 1px solid #A28C63;
  }
  
  /* スマホ時に横スクロールしないよう、横の余白（padding）を20px→10pxに */
  @media screen and (max-width: 559px) {
    .biz-hour th, .biz-hour td {
      padding: 10px 10px;
    }
  }
  
  .biz-hour th {
    font-weight: normal;
  }
  
  /* 「土」の文字色 */
  .biz-hour th.sat {
    color: #3db2da;
  }
  
  /* 「日」の文字色 */
  .biz-hour th.sun {
    color: #e66a6a;
  }
 
.date {
  margin: 0 0 25px;
  padding: 0px;
}

.date li {
  margin: 0 0 15px;
  list-style-type: none;
}

.date li a {
  color: #A28C63;
  text-decoration: none;
}

.date li a span {
  margin-left: 20px;
  padding: 0 0 0 10px;
  background-image: url(/bellvet/cmn/images/arrow.gif);
  background-repeat: no-repeat;
  background-position: left 6px;
}

footer {
  background-color: #A28C63;
  color: black;
  height: 30px;
  text-align: center;
}


/*診療案内*/

.main {
  padding-bottom: 20px;
}

/*施設案内*/

.box {
  height: 200px;
  width: 300px;
  background-color: #A28C63;
  color: #000;
}

#contents-item {
  display: block;
  text-align: center;
}

.flex {
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
}

.contents {
  align-items: center;
  margin: 20px 20px;
  list-style: none;
}

.content {
  margin-top: 20px;
}

/*ペットホテル*/

.ttl_menu {
  max-width: 100%;
}

/*埋め込み地図*/

.access__maparea {
  position: relative;
  padding-top: 100%;
  margin: 30px auto;
  max-width: 100%;
}

.access__map {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  height: 100%;
}
