<style>
#head_wrapper {
width: 100%;
background-color: #254A52;
background-image: none;
float:none;
}
.header {
width: 100%;
height: 42px;
color: #FFFFFF;
margin: 0 auto;
max-width: 992px;
display: flex;
flex-direction: column;
justify-content: center;
}
.header #logo {
padding: 18px 0px;
float: left;
margin-left: 10px;
}
.header #logo a {
height: 23px;
width: 138px;
display: block;
background-image: url(https://img0.land-mark.biz/ut_img/public_images/logo.gif);
text-indent: -3000px;
margin-left: -10px;
}
.header h1 {
font-size: 11px;
float: left;
display: block;
padding: 25px 0px;
vertical-align: bottom;
font-weight: bold;
}
.breadcrumb-container {
width: 100%;
max-width: 992px;
margin: 0 auto;
}
.left_box ul {
margin: 0;
}
.left_box ul li {
display: inline;
}
.left_box ul li a, .left_box ul li a:visited {
color: #3333CC;
font-size: 14px;
font-weight: 400;
line-height: 17px;
font-size: 13px;
}
.left_box ul li a:hover {
color: #CC3366;
}
.left_box ul li .nowpage {
color: #CC3366;
font-size: 13px;
font-weight: 700;
line-height: 19px;
}
.breadcrumb-container .breadcrumb {
padding: 0px;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #FFFFFF;
margin-bottom: 12px;
margin-left: 10px;
}
.user-info-group {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 10px;
}
.user-info-group .left_box {
display: flex;
align-items: center;
}
.user-info-group .left_box p:first-child {
margin-right: 10px;
}
.right_box {
display: flex;
font-size: 12px;
font-weight: 400;
gap: 8px;
}
.right_box .mypage {
height: 30px;
line-height: 30px;
display: flex;
justify-content: center;
align-items: center;
color: #FFFFFF;
background-color: #21AEAC;
border-radius: 4px;
padding: 8px 0;
background: linear-gradient(180deg, #1F444B 0%, #738E95 100%), linear-gradient(0deg, #24484F, #24484F);
min-width: 96px;
width: 96px;
}
.right_box .mypage:hover {
background: var(--orange-600);
}
.right_box .mypage img {
margin-right: 4px;
}
.right_box .logout {
height: 30px;
line-height: 30px;
display: flex;
justify-content: center;
align-items: center;
color: #158E8C;
background-color: #FFFFFF;
border: 1px solid #158E8C;
border-radius: 4px;
padding: 8px 0;
min-width: 96px;
width: 96px;
line-height: 0;
}
.right_box .logout img {
margin-left: 4px;
}
</style>
<div id="head_wrapper" class="clearfix">
<div class="header">
<div id="logo">
<a href="/"><img src="https://img0.land-mark.biz/ut_img/public_images/logo.gif">{{ BaseInfo.shop_name }}</a>
</div>
{% set current_path = app.request.get('_route') %}
{% if current_path == 'estimate' %}
<h1>{{ BaseInfo.shop_name }}の{{ title }}</h1>
{% endif %}
</div>
</div>
<div class="breadcrumb-container">
{% if isHiddenOnEstimateMobile is not defined or isHiddenOnEstimateMobile == false %}
{% if app.user %}
<div class="user-info-group">
{% if isShowUserInfo is not defined or isShowUserInfo %}
<div class="left_box">
<p><span class="text-bold mr-10">こんにちは </span><span class="red text-bold">{{ app.user.company_name }}</span></p>
<p class="red text-bold">{{ app.user.name01 }}様 (お客様番号: {{ GetCustomerBangou(app.user.LmCustomerId) }})</p>
</div>
{% endif %}
<div class="right_box">
<a href="{{ url('mypage') }}" class="mypage"><img src="/stylesheets/images/icons-svg/user-white-outline.svg" alt="my-page" />マイページ</a>
<a href="{{url('logout')}}" class="logout">ログアウト<img src="/stylesheets/images/icons-svg/logout.svg" alt="logout" /></a>
</div>
</div>
{% endif %}
{% if isHiddenBreadcrumbLink is not defined or isHiddenBreadcrumbLink == false %}
<div class="breadcrumb">
<div class="left_box">
<ul itemscope itemtype="{{eccube_config.BreadCrumbs.itemtyp[0]}}">
{% set BreadCrumbs = getCurrentBreadcrumb() %}
{% for idx, BreadCrumb in BreadCrumbs %}
{% if loop.last == false %}
<li itemprop="itemListElement" itemscope itemtype="{{eccube_config.BreadCrumbs.itemtyp[1]}}">
<meta itemprop="position" content="{{ idx+1 }}"/>
<a href="{{ BreadCrumb.href }}" itemprop="item">
<span itemprop="name">{{ BreadCrumb.label }}</span>
</a> >
</li>
{% else %}
<li>
<span class="nowpage">{{ BreadCrumb.label }}</span>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
{% endif %}
{% endif %}
</div>