@charset "UTF-8";

/* ヘーダー ロゴを左寄せにする */
.logo {
  text-align: left !important;
}
/* ビジネスボックスをロゴと並べて右端に配置 */
.tc-business-header {
  display: flex;
  justify-content: space-around;
}
/* ビジネスボックスのデザイン */
.tc-business-box {
  height: 130px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 1em;
  color: blue;
/*  background-color: rgba(240, 234, 234, 0.719);*/
  text-align: center;
  font-weight: bold;
/*
  vertical-align: middle;
  float: right;
*/
}
.tc-business-tel, .tc-business-fax {
  margin-left: 5px;
}
/*
.tc-business-text {
  font-weight: bold;
}
.tc-business-fax {
  font-weight: bold;
}
*/
/**********************************************
 メディアクエリ
***********************************************/
/*** 1030px 以下 ***/
@media screen and ( max-width: 1030px ) {
}
/*** 768px 以下 ***/
@media screen and ( max-width: 768px ) {
}
/*** 480px 以下 ***/
@media screen and ( max-width: 480px ) {
/* ヘーダー ロゴを左寄せにする */
.logo {
  text-align: center !important;
}
/* ビジネスボックスをロゴと並べて右端に配置 */
.tc-business-header {
  display: inline-grid;
  justify-content: space-around;
}
  /* ビジネスボックスのデザイン */
.tc-business-box {
  height: 130px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 1em;
  color: blue;
/*  background-color: rgba(240, 234, 234, 0.719);*/
  text-align: center;
  font-weight: bold;
/*
  vertical-align: middle;
  float: right;
*/
}
.tc-business-tel, .tc-business-fax {
  margin-left: 5px;
}
/*
.tc-business-text {
  font-weight: bold;
}
.tc-business-fax {
  font-weight: bold;
}
*/
}