{% block stylesheet %}
<style>
.bottom-fixed__navi{
position: fixed;
left: 0;
bottom: 0;
background: #fff;
width: 100%;
z-index: 45;
display: none;
}
.bottom-fixed__navi ul{
border-top: 1px solid #dd6487;
}
.bottom-fixed__navi li{
width: 50%;
}
.bottom-fixed__navi li:nth-of-type(1){
border-right: 1px solid #dd6487;
}
.bottom-fixed__navi li a{
width: 100%;
height: 100%;
border: none;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
transition: all .5s ease;
}
.bottom-fixed__navi li a:hover{
opacity: .7;
transition: all .5s ease;
}
.bottom-fixed__navi .contact-tel a img,
.bottom-fixed__navi .contact-mail a img {
margin-left: 0;
margin-right: 5px;
}
.business-hour{
display: block;
width: 100%;
text-align: center;
font-size: 12px;
margin-top: 5px;
}
.ec-blockTopBtn{
bottom: 60px;
}
.bottom-fixed .ec-footerRole{
padding-bottom: 55px;
}
@media only screen and (min-width: 880px){
.bottom-fixed__navi{
display: none;
}
.ec-blockTopBtn{
bottom: 20px;
}
.bottom-fixed .ec-footerRole{
padding-bottom: 0;
}
}
</style>
{% endblock %}
{% block javascript %}
<script>
$(function() {
var $body = $('body');
var $window = $(window);
$window.on('scroll', function() {
if ($window.width() < 880) {
if($(this).scrollTop() > 30) {
$(".bottom-fixed__navi").fadeIn();
if (!$body.hasClass('bottom-fixed')) {
$body.addClass('bottom-fixed');
}
} else {
$(".bottom-fixed__navi").fadeOut();
if ($body.hasClass('bottom-fixed')) {
$body.removeClass('bottom-fixed');
}
}
}
});
$window.on('load resize', function() {
if ($window.width() >= 880) {
$(".bottom-fixed__navi").fadeOut();
if ($body.hasClass('bottom-fixed')) {
$body.removeClass('bottom-fixed');
}
}
});
});
</script>
{% endblock javascript %}
<div class="bottom-fixed__navi">
<div class="bottom-fixed__navi__inner">
<ul class="flex">
<li class="contact-mail"><a href="{{ url('contact') }}" ><img src="{{ asset('assets/img/icon/icon_mail_red.png', 'user_data') }}" alt="メールフォームへ" />お問い合わせ</a></li>
<li class="contact-tel"><a href="tel:0758419278" ><img src="{{ asset('assets/img/icon/icon_tel_red.png', 'user_data') }}" alt="電話番号" />075-841-9278<span class="business-hour">(平日9:00〜17:00)</span></a></li>
</ul>
</div>
</div>