@charset "UTF-8";

@use "common" as *;


/* --------------------- */
/* -----footer------- */
/* --------------------- */

.footer {
  background-color: var(--color-blue);
  margin-top: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 50px;
  }
}
.footer .content {
  padding: 50px 30px 30px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .footer .content {
    padding: 50px 0 30px 0;
    display: block;
  }
}

/* ロゴ周りとメニューの囲み*/
.footer .footer-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  column-gap: 35px;
}
@media screen and (max-width: 768px) {
  .footer .footer-content {
    width: 100%;
    display: block;
  }
}

/* ロゴ周り*/
.footer .footer_corporate {
  padding-right: 25px;
  border: 1px solid #22CCE7;
  border-width: 0 1px 0 0;
}
@media screen and (max-width: 768px) {
  .footer .footer_corporate {
    border: none;
    padding-right: 0;
  }
}

.footer .footer_corporate .logo {
  width: 80%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer .footer_corporate .logo {
    width: 40%;
    margin: 0 auto;
  }
}

.footer .footer_corporate p {
  color: var(--color-white);
  font-size: var(--s14);
}
@media screen and (max-width: 768px) {
  .footer .footer_corporate p {
    display: none;
  }
}

.footer .footer_corporate .tel {
  font-size: var(--s30);
  letter-spacing: 0.1rem;
  margin: 20px 0 30px 0;
}
.footer .footer_corporate .tel a {
  display: block;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .footer .footer_corporate .tel a {
    text-align: center;
  }
}
.footer .footer_corporate .tel span {
  font-size: var(--s18);
}

/* メールとマップアイコン */
.footer .footer_corporate .icon_bt {
  width: 60%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
}
@media screen and (max-width: 768px) {
  .footer .footer_corporate .icon_bt {
    display: none;
  }
}
.footer .footer_corporate .icon_bt li a {
  display: block;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 30% 5%;
}
.footer .footer_corporate .icon_bt li{
transition: 0.3s;
}
.footer .footer_corporate .icon_bt li:hover {
opacity: 0.7;
}

.footer .footer_corporate .icon_bt li.icon_bt_item01 {
  background-color: var(--color-blue-rich);
}
.footer .footer_corporate .icon_bt li.icon_bt_item01 img {
  width: 40%;
}
.footer .footer_corporate .icon_bt li.icon_bt_item02 {
  background-color: var(--color-blue-murky-dark);
}
.footer .footer_corporate .icon_bt li.icon_bt_item02 img {
  width: 25%;
}

/*メニューリスト*/
.footer_nav_list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer_nav_list {
    display: none;
  }
}

.footer_nav_list .footer_nav_group {
  margin: 0 10px 30px 10px;
}
@media screen and (max-width: 768px) {
  .footer_nav_list .footer_nav_group {
    margin-bottom: 30px;
  }
}

.footer_nav_list .footer_nav_item {
  margin: 10px 0;
  font-size: var(--s14);
  color: var(--color-white);
}
.footer_nav_list .footer_nav_item a {
  color: var(--color-white);
}

/* バナー */
.footer-bn {
  margin-top: 30px;
}
.footer-bn .footer-bn-group {
  text-align: center;
  display: flex;
  justify-content: center;
}
.footer-bn .footer-bn-group .item {
  width: 130px;
}
@media screen and (max-width: 768px) {
  .footer-bn .footer-bn-group .item {
    width: 48%;
    margin: 0 10px;
  }
}

/*コピーライト */
.footer small {
  display: block;
  margin-top: 30px;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer small {
    text-align: left;
    margin-right: 80px;
  }
}

/* ページtop */
.footer .p_top {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
}
@media screen and (max-width: 768px) {
  .footer .p_top {
    width: 60px;
  }
}