@charset "UTF-8";

/* =========================
  共通
========================= */
.footer-site{
  background: #FFFFFF;
  border-top: 1px solid #D0CCCC;
}

.footer-site__inner{
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
  上段
========================= */
.footer-site__top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* =========================
  バナー
========================= */
.footer-site__banners{
  display: flex;
  gap: 20px;
}

.footer-site__banner{
  width: 250px;
  min-height: 76px;
  border: 1px solid #D0CCCC;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity .25s ease;
}

.footer-site__banner:hover{
  text-decoration: none;
  opacity: .85;
}

.footer-site__banner:hover *{
  text-decoration: none;
}

.footer-site__banner-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  text-align: center;
  box-sizing: border-box;
}

.footer-site__banner-icon{
  flex: 0 0 auto;
  line-height: 1;
}

.footer-site__banner-icon img{
  display: block;
  width: auto;
  height: 32px;
}

.footer-site__banner-text{
  display: inline-block;
  line-height: 1.5;
}

.footer-site__banner--gan .footer-site__banner-text{
  color: #EB6D00;
  font-size: 18px;
  font-weight: 500;
}

.footer-site__banner--gan .footer-site__banner-text{
  letter-spacing: -0.03em;
}

.footer-site__banner--renkei .footer-site__banner-text{
  color: #30A229;
  font-size: 20px;
  font-weight: 500;
}

.footer-site__banner--clinic .footer-site__banner-text{
  color: #3286B2;
  font-size: 18px;
  font-weight: 500;
}

/* PCだけ改行 */
.pc-only{
  display: inline;
}

/* =========================
  右ブロック
========================= */
.footer-site__info{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 auto;
}

.footer-site__brand{
  display: block;
}

.footer-site__logo{
  display: block;
  width: 347px;
  max-width: 100%;
  height: auto;
}

.footer-site__meta{
  margin-top: 12px;
}

.footer-site__address,
.footer-site__tel{
  margin: 0;
  color: #2F2F2F;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.footer-site__address{
  white-space: normal;
}

.footer-site__address br{
  display: none;
}

.footer-site__tel{
  white-space: nowrap;
  flex: 0 0 auto;
}

.footer-site__meta-inner{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 4px;
  flex-wrap: nowrap;
}

.footer-site__access{
margin-left: auto;
  flex: 0 0 auto;
}

/* =========================
  交通アクセスボタン
========================= */
.footer-site__access-link{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-width: 0;
  height: 30px;
  padding: 0 34px 0 20px;
  border: 1px solid #1759A5;
  border-radius: 999px;
  background: #FFFFFF;
  color: #1759A5;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.footer-site__access-link:hover,
.footer-site__access-link:focus{
  background: #4F93D8;
  border-color: #4F93D8;
  color: #FFFFFF;
  text-decoration: none;
}

.footer-site__access-link::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 13px;
  height: 13px;
  border: 1px solid #1759A5;
  border-radius: 50%;
  background: #1759A5;
  transform: translateY(-50%);
  box-sizing: border-box;
  transition: background-color .25s ease, border-color .25s ease;
  z-index: 1;
}

.footer-site__access-link::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 4px;
  height: 4px;
  border-top: 1.5px solid #FFFFFF;
  border-right: 1.5px solid #FFFFFF;
  transform: translateY(-60%) rotate(45deg);
  box-sizing: border-box;
  transition: border-color .25s ease;
  z-index: 2;
}

.footer-site__access-link:hover::after,
.footer-site__access-link:focus::after{
  background: #FFFFFF;
  border-color: #1759A5;
}

.footer-site__access-link:hover::before,
.footer-site__access-link:focus::before{
  border-top-color: #1759A5;
  border-right-color: #1759A5;
}

/* =========================
  コピーライト
========================= */
.footer-site__bottom{
  margin-top: 20px;
}

.footer-site__copyright{
  margin: 0;
  color: #2F2F2F;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/* =========================
  PC大
========================= */
@media (min-width: 1201px){
  .footer-site{
    padding: 50px 0 24px;
  }
}

/* =========================
  中間
========================= */
@media (min-width: 801px) and (max-width: 1200px){
  .footer-site{
    padding: 20px;
  }

  .footer-site__top{
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer-site__banners{
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-site__info{
    align-items: center;
  }

  .footer-site__meta{
    text-align: center;
  }

  .footer-site__meta-inner{
    justify-content: center;
  }

  .footer-site__bottom{
    text-align: center;
  }
}

/* =========================
  SP
========================= */
@media (max-width: 800px){
  .footer-site{
    padding: 20px 16px 28px;
  }

  .footer-site__top{
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .footer-site__banners{
    flex-direction: column;
    gap: 16px;
  }

  .footer-site__banner{
    width: 100%;
  }

  .footer-site__banner-inner{
    min-height: 68px;
  }

  .footer-site__logo{
    margin: 40px auto 0;
    width: 320px;
    max-width: 100%;
      }

.footer-site__info{
    align-items: center;
  }

  .footer-site__brand{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-site__logo{
    margin: 40px 0 0;
    width: 320px;
    max-width: 100%;
    display: block;
    transform: translateX(-4px);
  }

  .footer-site__meta{
    width: 100%;
    margin-top: 20px;
    text-align: left;
  }

  .footer-site__meta{
    margin-top: 20px;
    text-align: left;
  }

  .footer-site__address{
    display: inline-block;
    text-align: left;
    white-space: normal;
  }

  .footer-site__address br{
    display: inline;
  }

  .footer-site__meta-inner{
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: nowrap;
  }

  .footer-site__tel{
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .footer-site__access-link{
    width: auto;
    min-width: 0;
    padding: 0 34px 0 20px;
  }

  .footer-site__bottom{
    margin-top: 30px;
    text-align: center;
  }

  .pc-only{
    display: none;
  }
}