
/****************************************
基本
****************************************/
body {
  font-size: 1.4em;
  font-family: 'Noto Sans Japanese', sans-serif;
  color: #333;
}

#allWrap {
  height: 100vh;
  display: flex;
  justify-content: space-between;
  min-height: 700px;
  overflow-y: hidden;
}

#allWrap > li {
  width: 50%;
  position: relative;
}

#allWrap > li:first-child {
  background: radial-gradient(#fff4d1, #fbd79e);
  border-top: 10px solid #590E10;
}

#allWrap > li:last-child {
  background-image: url(../img/ph_mabo.jpg);
  background-size: cover;
  background-position: right bottom;
}

@media only screen and (max-width: 768px) {

#allWrap {
  height: auto;
  min-height: 100vh;
}

#allWrap > li {
  width: 100%;
}

#allWrap > li:first-child {
  overflow-y: auto;
  min-height: 100vh!important;
}

#allWrap > li:last-child {
  display: none;
}

.telLink a,
.telLink a:visited,
.telLink a:hover {
  color: #333;
}

.telLink a {
  text-decoration: underline;
}
}

/****************************************
ナビゲーション
****************************************/
#navi {
  margin-top: 5%;
  display: flex;
  justify-content: center;
}

#navi li {
  width: 26%;
}

#navi li a {
  display: block;
  width: 100%;
  cursor: pointer;
  color: #590E10;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
  border-right: 1px solid #590E10;
  letter-spacing: 1px;
  font-size: 1.2vw;
  white-space: nowrap;
}

#navi li:first-child a {
  border-left: 1px solid #590E10;
}

#navi li a:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 768px) {

#navi li {
  width: 30%;
}

#navi li a {
  font-size: 3vw;
}

#navi li:first-child a {
  border-left: 1px solid #590E10;
}

#navi li a:hover {
  opacity: 1;
}
}

/****************************************
フッタ
****************************************/
#copyRight {
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: #590E10;
  color: #FFF;
  font-size: 1rem;
  letter-spacing: 1px;
  text-align: center;
  line-height: 20px;
}

#goTop {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 1000;
}

#goTop a {
  display: block;
  color: #FFF;
  font-size: 1.4rem;
  border: 1px solid #FFF;
  background-color: #000;
  padding: 3px 10px 5px;
  text-align: center;
  border-radius: 5px;
}

#goTop a:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 768px) {

#copyRight {
  position: static;
  font-size: 0.8rem;
  line-height: 15px;
  margin-top: 15%;
}

#goTop {
  bottom: 30px;
  right: 10px;
}

#goTop a:hover {
  opacity: 1;
}
}

/****************************************
モーダル
****************************************/
.modalCts dt {
  font-size: 2.4rem;
  font-weight: 700;
  border-bottom: 3px double #CCC;
  padding-bottom: 5px;
}

.modalCts dd {
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {

.modalCts dt {
  font-size: 2rem;
  padding-bottom: 2%;
}
}

/**********店舗情報 **********/
.shopTable tr:nth-child(odd) td {
  background-color: #fff4d1;
}

.shopTable tr:nth-child(even) td {
  background-color: #fedeaa;
}

.shopTable td {
  font-size: 1.4rem;
  text-align: left;
  padding: 5px 10px;
  border-right: 1px solid #FFF;
}

.shopTable td:first-child,
.shopTable td:last-child {
  white-space: nowrap;
  width: 10px;
}

.shopTable td a {
  display: inline-block;
  text-align: center;
  width: 100px;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 25px;
}

.shopTable td a:hover {
  opacity: 0.6;
}

.shopTable td a:first-child {
  margin-right: 5px;
  background-color: #590E10;
}

.shopTable td a:nth-child(2) {
  background-color: #fa7600;
}

@media only screen and (max-width: 768px) {

.shopTable td {
  display: block;
  padding: 10px;
}

.shopTable td:first-child,
 .shopTable td:last-child {
  width: 100%;
}

.shopTable td:first-child {
  padding-bottom: 0;
  font-weight: 500;
}

.shopTable td:first-child:before {
  content: "■";
}

.shopTable td:not(:first-child) {
  padding-top: 0;
  font-size: 1.2rem;
}

.shopTable td a:hover {
  opacity: 1;
}
}

/**********会社情報 **********/
#companyTable {
  margin-top: 10px;
  font-size: 1.4rem;
}

#companyTable tr:nth-child(odd) {
  background-color: #EEE;
}

#companyTable tr:nth-child(even) {
  background-color: #F9F9F9;
}

#companyTable th,
#companyTable td {
  padding: 10px;
  text-align: left;
}

#companyTable th {
  font-weight: 400;
  width: 10px;
  white-space: nowrap;
  border-right: 1px solid #FFF;
}

#companyTable td > a {
  display: inline-block;
  background-color: #333;
  color: #FFF;
  font-size: 1.2rem;
  border-radius: 30px;
  padding: 0 10px;
  margin-left: 5px;
}

#companyTable td a:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 768px) {

#companyTable {
  margin-top: 5px;
}

#companyTable th,
#companyTable td {
  padding: 5px 10px;
  display: block;
}

#companyTable th {
  padding-bottom: 0;
  font-weight: 500;
  width: 100%;
  border: none;
}

#companyTable th:before {
  content: "■";
}

#companyTable td a:hover {
  opacity: 1;
}
}

p.info_txt{
	float: left;
	color: #B41316;
}

@media only screen and (max-width: 768px) {
	p.info_txt{
	float: none;
}
}

@media only screen and (max-width: 520px) {
td.sm_float{
		float:left;
	}
}