/**
 * 東横INN×地元なび　TOPページCSS
 *
 *
 **/
/* 画面サイズ */
.container {
  width:100%;
    p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.container-fluid{
	width:100%;
    max-width: 720px;
}

/* TOPページの東横INNホテル名の入力エリア の追加css */
.input_text_area{
	width:100%;
    max-width: 560px;
    margin: 0 auto;
}

.navbar-light .navbar-toggler {
    border-color: rgba(0,0,0,0);
}

.jimoto-img-fluid {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.side-img-fluid {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.font-mini{
	font-size: 0.7rem;
}

.font-small{
	font-size: 0.9rem;
}


.ht-300 {
  height: 300px !important;
}

/* ****************************************
 * 背景色
 * **************************************** */
.cp_bgpattern04 {
	width: 100%;
	height: 315px;
	background-color: #616161;
	background-image: repeating-linear-gradient(45deg,
	#424242, #424242 3px,
	transparent 0, transparent 6px);
}


.bg-toyoko-navy-blue {
  background-color: SteelBlue !important;
}

.bg-toyoko-brown {
	background:rgba(205,183,165,0.5);
}
.jumbotron{
	background-color: #dedede;
	background-image:
	linear-gradient(#ecebeb 50%, transparent 50%, transparent);
	background-size: 10px 10px;
}

.shiro-img-fluid {
  width: 100%;
  min-height: 200px;
  object-fit: cover;
}

.shiro-text{
  font-size: 12px;
  line-height: 1.75em;
}


/* ****************************************
 * ボタンデザイン
 * **************************************** */

/* 紺色 */
.btn-toyoko_navy_blue {
  color: #fff;
  background-color: SteelBlue;
  border-color: SteelBlue;
}

.btn-toyoko_navy_blue:hover {
  color: #fff;
  background-color: SteelBlue;
  border-color: SteelBlue;
}

.btn-toyoko_navy_blue:focus, .btn-toyoko_navy_blue.focus {
  color: #fff;
  background-color: SteelBlue;
  border-color: SteelBlue;
  box-shadow: 0 0 0 0.2rem rgba(58,71,105, 0.5);
}

.btn-toyoko_navy_blue.disabled, .btn-toyoko_navy_blue:disabled {
  color: #fff;
  background-color: SteelBlue;
  border-color: SteelBlue;
}

.btn-toyoko_navy_blue:not(:disabled):not(.disabled):active, .btn-toyoko_navy_blue:not(:disabled):not(.disabled).active,
.show > .btn-info_detial.dropdown-toggle {
  color: #fff;
  background-color: SteelBlue;
  border-color: SteelBlue;
}

.btn-toyoko_navy_blue:not(:disabled):not(.disabled):active:focus, .btn-toyoko_navy_blue:not(:disabled):not(.disabled).active:focus,
.show > .btn-info_detial.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58,71,105, 0.5);
}

.top_btn{
	border-radius:50%;
}

/* ******************************************
 * ヘッダ部
 ******************************************** */
.top_header{
  width: 100%;
  height: 50px;

}

.top_header .logo{
	margin: 5px;
	width: 100%;
	text-align: center;
}

.top_header .menu{
  width: 20%;
}

/* ******************************************
 * NAVI BAR
 ******************************************** */
.taitl_body{
	font-size: 0.9rem;
}

.taitl_icon{
	position: fixed; /* 要素の位置を固定する */
	top: 0; /* 基準の位置を画面の一番下に指定する */
	right: 0; /* 基準の位置を画面の一番右に指定する */
}

.taitl_body a{
	color: #000;
}
/*スマホ用のcssを記述*/
@media screen and (max-width:639px) {
	#side_menu {display: none;}

	.jimoto-img-fluid {
  			width: 100%;
  			height: 200px;
  			object-fit: cover;
	}

}

@media only screen and (min-width:640px) and (max-width:1023px) {
	#side_menu {display: none;}

	.jimoto-img-fluid {
  			width: 100%;
  			height: 400px;
  			object-fit: cover;
	}
}

@media screen and (min-width:1024px) {
	#side_menu {display: block;}
}

/* ****************************************
 * TABLEデザイン
 * **************************************** */

.equal_table{
  table-layout: fixed;
}

th{
 	color: #000;
  	background-color: rgba(206,183,165, 0.3);
  	font-weight: normal;
}

/* 概要説明 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slide-down {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.slide-up {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}
.content-wrap {
  height: 150px;
  overflow: hidden;
  position: relative;
  margin: 0;
}
.close-btn, .more-btn {
  display: block;
  width: 100%;
  padding: 80px 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 60%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 60%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 60%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(
      startColorstr='#00ffffff',
      endColorstr='#ffffff',
      GradientType=0
    );
}
.close-btn {
  background: none;
}
.slide-up {
  height: 150px;
  padding-bottom: 0;
  overflow: hidden;
}
.slide-down {
  height: auto;
  overflow: visible;
  padding-bottom: 50px;
}
.more-btn a {
  display: inline-block;
  color: #ccc;
  cursor: pointer;
  background: #fff;
  padding: 5px 20px;
  width: 80%;
  border-radius: 20px;
}
.close-btn {
  padding:0;
}
.close-btn a {
  background: #aaa;
}
