@charset "UTF-8";

/* フッター
***************************************************************/
footer {
  background-color: #6C5D47;
  color: #FFF;
}

footer img.footer_img {
  margin-bottom: 50px;
}

footer .inner {}

footer .inner .footerbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid #FFF;
}

footer .inner .footerbox .footerleft {}

footer .inner .footerbox .footerleft .left_textbox {
  display: flex;
  align-items: center;
  margin-bottom: 51px;
  gap: 34px;
}

footer .inner .footerbox .footerleft .left_textbox img.footer_logo {
  width: 106px;
  height: auto;

}

footer .inner .footerbox .footerleft .left_textbox .lefttext {
  display: flex;
  flex-flow: column;
  gap: 15px;
}

footer .inner .footerbox .footerleft .left_textbox .lefttext p {
  font-size: 14px;
}

footer .inner .footerbox .footerleft img.footer_calender {
  width: 430px;
  height: auto;
}

footer .inner .footerright {
  background-color: #FCFAEC;
  padding: 30px 56px 30px 52px;
  border-radius: 10px;

}

footer .inner .footerright h3 {
  font-size: 20px;
  font-weight: 500;
  color: #6C5D47;
  text-align: center;
  margin-bottom: 20px;
}

footer .inner .footerright .right_contactbox {
  display: flex;
  gap: 31px;
}

footer .inner .footerright .right_contactbox a.tell {
  background-color: #6C5D47;
  border-radius: 10px;
  text-align: center;
  padding: 20px 32px 20px 34px;
}

footer .inner .footerright .right_contactbox a.tell img {
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
  border-radius: 50%;
}

footer .inner .footerright .right_contactbox a.mail {
  background-color: #FF9A01;
  border-radius: 10px;
  text-align: center;
  padding: 20px 39px 20px 40px;
  transition: .3s;
  position: relative;
}

footer .inner .footerright .right_contactbox a.mail::before {
  content: '';
  display: inline-block;
  background-image: url(../../images/mail_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  transition: .3s;
}

footer .inner .footerright .right_contactbox a.mail p.text,
footer .inner .footerright .right_contactbox a.tell p.text {
  font-size: 24px;
  font-weight: 500;
  margin: 10px 0 7px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

footer .inner .footerright .right_contactbox a.mail p.text {
  margin-top: 60px;
}

footer .inner .footerright .right_contactbox a.mail p.businesshour,
footer .inner .footerright .right_contactbox a.tell p.businesshour {
  font-size: 14px;
}

footer nav.footer_nav {
  padding: 30px 0 60px;
}

footer nav.footer_nav ul {
  display: flex;
  gap: 30px;
  font-size: 14px;
  justify-content: end;
}

footer nav.footer_nav ul li a {
  transition: .3s;
}

footer .copy {
  background-color: #FCFAEC;
  text-align: center;
  padding: 30px 0;
  font-size: 12px;
  color: #6C5D47;
}

@media screen and (min-width: 768px) {
  footer .inner .footerright .right_contactbox a.tell {
    pointer-events: none;
  }

  footer .inner .footerright .right_contactbox a.mail:hover {
    background-color: #FF7B01;
  }

  footer .inner .footerright .right_contactbox a.mail:hover::before {
    background-image: url(../../images/mail_icon_hover.svg);
  }

  footer nav.footer_nav ul li a:hover {
    color: #FF9A01
  }
}

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

  footer img.footer_img {
    margin-bottom: 40px;
  }

  footer .inner .footerbox {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: unset;
    padding-bottom: unset;
    border-bottom: unset;
  }

  footer .inner .footerbox .footerleft .left_textbox {
    flex-flow: column;
    margin-bottom: 32px;
    gap: 20px;

  }

  footer .inner .footerbox .footerleft .left_textbox img.footer_logo {
    width: 106px;
    height: auto;

  }

  footer .inner .footerbox .footerleft .left_textbox .lefttext {
    align-items: flex-start;
  }

  footer .inner .footerbox .footerleft .left_textbox .lefttext p {
    font-size: 14px;
    font-weight: 500;
  }

  footer .inner .footerbox .footerleft img.footer_calender {
    width: 100%;
    height: auto;
    margin-bottom: 33px;
  }

  footer .inner .footerright {
    padding: 30px 0;
  }

  footer .inner .footerright h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  footer .inner .footerright .right_contactbox {
    flex-flow: column;
    gap: 20px;
    padding: 0 58px;
  }


  footer .inner .footerright .right_contactbox a.mail img {}

  footer .inner .footerright .right_contactbox a.mail p.text,
  footer .inner .footerright .right_contactbox a.tell p.text {
    margin: 10px 0 4px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  }

  footer .inner .footerright .right_contactbox a.mail p.text {
    margin-top: 60px;
  }

  footer .inner .footerright .right_contactbox a.mail p.businesshour,
  footer .inner .footerright .right_contactbox a.tell p.businesshour {
    font-size: 14px;
  }

  footer nav.footer_nav {
    padding: 20px 53px 40px;
    position: relative;
  }

  footer nav.footer_nav ul {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 20px;
    position: unset;
    text-align: center;
    justify-content: center;

  }

  footer .copy {
    padding: 15px 0;
  }



/* 下部メニュー */
  .footer_contactmenu {
    position: fixed;
    background-color:#FCFAEC;
    bottom: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 1;
    visibility: visible;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 10px 10px;
  }

  .hidden {
    opacity: 0;
    visibility: hidden;
  }

  .footer_contactmenu .inner{
    width: 100%;
    display: flex;
    gap: 5px;
    justify-content: center;
  }

  .footer_contactmenu img.telbtn {
    width: 253px;
    height: 80px;
    box-shadow: 0 0 10px 0 rgba(34, 34, 34, .1);
  }

  .footer_contactmenu img.mailbtn {
    width: 97px;
    height: 80px;
    box-shadow: 0 0 10px 0 rgba(34, 34, 34, .1);
  }
}