@charset "utf-8";
/* CSS Document */
/***
====================================================================================================================================================================================================================================================================================

下部固定フッターメニュー

====================================================================================================================================================================================================================================================================================
***/
.footerMenuSection {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 10px 16px;
  box-sizing: border-box;
  box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.4);
  z-index: 9999;
}
.footerFixedMenu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footerFixedMenu li {
  flex-basis: 20%;
  text-align: center;
  height: 50px;
  vertical-align: middle;
  font-size: 11px;
  display: inline-block;
}
.footerFixedMenu li a {
  color: #777;
}
.footerFixedMenu li dt {
  width: 100%;
  height: 33px;
  padding-top: 8px;
}
.footerFixedMenu li dt img {
  vertical-align: bottom
}
/***
====================================================================================================================================================================================================================================================================================

footer

====================================================================================================================================================================================================================================================================================
***/
footer {
  width: 100%;
  padding-top: 5em;
  padding-bottom: 100px;
  background: #fafafa;
  color: #333;
  font-size: 14px
}
footer ul {
  list-style: none;
}
footer a:hover {
  opacity: 0.6;
}
/*******************************************************************************　

footerMenu

*******************************************************************************/
.footerMenu ul {
  max-width: 1240px;
  width: 96%;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: row;
  border-bottom: solid 1px #ccc;
  padding-bottom: 24px;
}
.footerMenu ul li {
  border-left: solid 2px #797979;
}
.footerMenu ul li a {
  display: block;
  font-size: 12px;
  text-decoration: none;
  padding-right: 48px;
  color: #333;
  box-sizing: border-box;
	padding-left: 10px;
	
}
.footerMenu ul li a:hover {
  text-decoration: underline;
}
/*******************************************************************************　

.footer_container

*******************************************************************************/
.footer_container {
  padding-bottom: 20px;
  display: flex;
  flex-direction: row;
  /*  justify-content: space-between;*/
  gap: 40px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
.footer_container .footer_box {
  display: block;
}
.footer_box h5 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 32px;
  margin-bottom: 16px;
  /*  border-bottom: solid 1px #ccc;*/
  padding-bottom: 10px;
}
.footer_box p {
  line-height: 1.8;
  color: #555;
  text-align: justify;
  font-size: 12px;
}
/*　.footer_box①　*/
.footer_box table {
  width: 100%;
  border-collapse: collapse;
  font-weight: normal;
}
.footer_box tr {
  border-bottom: solid 1px #999;
}
.footer_box th {
  white-space: nowrap;
  vertical-align: middle;
  border-bottom: solid 1px #999
}
.footer_box th, .footer_box td {
  font-weight: normal;
  padding: 16px;
  line-height: 1.6;
  text-align: justify;
	font-size: 12px;
}
@media screen and (max-width: 960px) {
  .footer_container {
    width: 94%;
    display: flex;
    flex-direction: column;
  }
  .footer_box {
    width: 100% !important;
  }
}
/*******************************************************************************　

small コピーライト

*******************************************************************************/
small {
  font-size: 12px;
  display: block;
  background: #d4523d;
  padding: 20px 10px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 481px) {
  /* 481px以上に適用されるCSS（タブレット用） */
  .display_xs-sm-md {
    display: none;
  }
} /*****************************************************************************************************************/
@media screen and (max-width: 960px) {
  #footer {
    padding: 20px;
  }
} /*****************************************************************************************************************/
@media screen and (min-width: 961px) {
  /* 768px以上に適用されるCSS（タブレット用） */
  .footerMenuSection {
    display: none !important;
  }
} /*****************************************************************************************************************/