@charset "UTF-8";

/* ヘーダー ロゴを左寄せにする */
.logo {
  text-align: left !important;
}
/* ビジネスボックスをロゴと並べて右端に配置 */
.tc-business-header {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
/* ビジネスボックスのデザイン */
.tc-business-box {
  margin-top: auto;
  margin-bottom: auto;
  padding: 1em;
  color: blue;
/*  background-color: rgba(240, 234, 234, 0.719);*/
  text-align: center;
  font-weight: bold;
}
.tc-business-hours, .tc-business-holiday, .tc-business-tel, .tc-business-fax {
  margin-left: 5px;
}
/**********************************************
 メディアクエリ
***********************************************/
/*** 1030px 以下 ***/
@media screen and ( max-width: 1030px ) {
}
/*** 768px 以下 ***/
@media screen and ( max-width: 768px ) {
/* ビジネス headerの幅を変更 */
.tc-business-header {
  width: 100%;
}
}
/*** 667px 以下 ***/
@media screen and ( max-width: 666px ) {
/* ヘーダー ロゴを中央寄せにする */
.logo {
  text-align: center !important;
}
/* ビジネスボックスをロゴと縦に並べて中央に配置 */
.tc-business-header {
  flex-direction: column;
}
}
/*** 480px 以下 ***/
@media screen and ( max-width: 480px ) {
}