/* CSS Document */
.cover{
	background-image: url(../image/osaka-1.png);
	background-size: cover;
	background-position: 50% 50%;
	height: 300px;
}
header nav {
	opacity: 0.9 !important;
}

header li > a:hover{
	color: blue !important;	
}

header li > p:hover{
	color: blue !important;	
}

header p:hover{
	cursor: pointer;
}

footer{
	background-color: lightgrey !important;
}

.container {
	max-width: 960px;
  }
  
.lh-condensed 
{ 
	line-height: 1.25; 
}

.hd-img{
	margin-top: 125px;
	height: 300px;
	background-image: url(../image/osaka-25.png);
	background-size: cover;
	background-position: 50% 50%;
}

.navbar-brand .img-rounded { 
	width:100px; 
	height:100px;
}

.carousel-inner img {
	background-size: cover;
  background-position: 50% 50%;
      /* width: 100%;
      height: 100%;	   */
}

.carousel-item {
	height: 100vh;
}
.carousel-item > img {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-height: none !important;
	max-width: none !important;
	min-height: 100%;
	min-width: 100%;
}

.buken-list{
	background-color:azure !important;
	padding: 15px;
}

.contact-info {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    width: 100%;
    font-size: 1.08em;
    font-weight: bold;
    margin-bottom: 10px;
}

.thumbnail {
    display: inline-block;
	height: 150px;
	margin-right: 15px;
    margin-bottom: 15px;
}
.thumbnail img {
    height: 100%;
}

.myScrollA {
	padding-top: 70px;
}
.myScrollA span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 24px;
	height: 24px;
	margin-left: -12px;
	border-left: 3px solid rgb(234, 238, 19);
	border-bottom: 3px solid rgb(234, 238, 19);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: sdb 2s infinite;
	animation: sdb 2s infinite;
	opacity: 0;
	box-sizing: border-box;
  }
  .myScrollA  span:nth-of-type(1) {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
  }
  .myScrollA  span:nth-of-type(2) {
	top: 16px;
	-webkit-animation-delay: .15s;
	animation-delay: .15s;
  }
  .myScrollA  span:nth-of-type(3) {
	top: 32px;
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
  }
  @-webkit-keyframes sdb {
	0% {
	  opacity: 0;
	}
	50% {
	  opacity: 1;
	}
	100% {
	  opacity: 0;
	}
  }
  @keyframes sdb {
	0% {
	  opacity: 0;
	}
	50% {
	  opacity: 1;
	}
	100% {
	  opacity: 0;
	}
  }