/* phpテンプレートに対してのスタイル */
/* tmpl/about_lava.phpに対してのスタイル */
#ft-about {
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: linear-gradient(to bottom, #fff 0%, #fff 50%, #f0f0f0 50%, #f0f0f0 100%);
}
.ft-about-img {
  text-align: center;
}
.ft-about-inner {
  display: flex;
  gap: 20px;
}
.ft-about-logo {
  display: flex;
  gap: 20px;
}
.ft-about-logo::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #c8c8c8;
}
.h-style02 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.ft-about-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.btn-l.btn-ow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.6s;
  padding: 10px 24px;
  font-size: 16px;
  color: var(--color-main);
  font-weight: 700;
}
.btn-l.btn-ow:hover {
  background-color: #fbede5;
  color: var(--color-main);
}
.btn-l.btn-ow::after {
  content: "";
  border-width: 1px;
  border-style: solid;
  transform: rotate(45deg);
  transition: translate 0.6s;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-color: var(--color-main);
  border-left: none;
  border-bottom: none;
}
.btn-l.btn-ow:hover::after {
  translate: 5px;
}

/* tmpl/footer.phpに対してのスタイル */
#site-footer {
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.ft-localnav {
  display: flex;
  justify-content: center;
}
.ft-localnav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ft-localnav ul li {
  font-size: 14px;
  position: relative;
  padding-right: 8px;
}
.ft-localnav ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.2em;
  background: var(--color-white);
}
.ft-bottom .ft-copyright {
  font-size: 12px;
}
.topBack {
  display: none;
}

@media (max-width: 800px) {
  #ft-about {
    padding: 0 0 30px 0;
  }
  .ft-about-img {
    width: 100%;
  }
  .ft-about-img img {
    width: 100%;
    object-fit: cover;
  }
  .ft-about-inner {
    flex-direction: column;
    align-items: center;
  }
  .ft-about-logo::after {
    display: none;
  }
  .ft-about-content {
    gap: 20px;
  }
}
