{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
{% extends 'default_frame.twig' %}
{% set body_class = 'top_page' %}
{% block main %}
{% endblock %}
{% block stylesheet %}
<link rel="stylesheet" type="text/css" href="{{ asset('assets/css/common.min.css') }}?20231227">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
{% endblock %}
{% block javascript %}
<script type="text/javascript" src="/javascripts/jquery.fbt.js?20200715_01"></script>
<script type="text/javascript">
$(function() {
$(window).on('scroll', function(e) {
var $this = $('.fbnr,.fbnr2');
var scrollTop = $(window).scrollTop();
if (scrollTop >= 200) {
$this.addClass('fixed');
} else {
$this.removeClass('fixed');
}
});
});
</script>
{% endblock %}