﻿@charset "UTF-8";


/* 全体構造
-------------------------------------------------------------------------------------------------------- */
html {
    height: 100%;
}
body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

input, button, select, textarea {
    -webkit-appearance: none;
}

input[type="text"]:focus {
    outline: 0;
}
/*--------------------------------------------------------------------------------------------------------*/


/* breadcrumb
-------------------------------------------------------------------------------------------------------- */
.breadcrumb {
    background: #f2f4f3;
    position: relative;
}

.breadcrumb:after {
    content: " ";
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    bottom: 0;
    width: 25px;
    background: linear-gradient(to right, rgba(242, 244, 243, 0) 0%, #f2f4f3 70%);
}

.breadcrumb-list {
    list-style: none;
    padding: 6px 15px;
    padding-right: 30px;
    margin: 0 auto;
    max-width: 1020px;
    overflow-x: auto;
    white-space: nowrap;
}
.breadcrumb-list > li {
    display: inline-block;
}

.breadcrumb-list > li > a {
    color: #003399;
}

.breadcrumb-list > li + li:before {
    content: ">";
    padding: 0 5px;
    color: #000;
}

.breadcrumb-list > .active {
    color: #676767;
}
/*--------------------------------------------------------------------------------------------------------*/

/* Clearfix
--------------------------------------------------------------------------------------------------------*/
/* Modern browsers like Firefox, Safari, Opera */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* IE 7 and MacIE*/
.clearfix {
    display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}
/* End hide from IE-mac */
/*--------------------------------------------------------------------------------------------------------*/







