@charset "utf-8";

p.left03 {
    text-align: left;
    /* border: solid #000000 1px; */
    width: 700px;
    padding-left: 3em;
}

p.left04 {
    text-align: left;
    /* border: solid #000000 1px; */
    width: 700px;
    padding-left: 5em;
}

h4 {
    color: blue;
    font-weight: bold;
}

.yymmdd {
    font-size: 10pt;
}

/*ボタン関連*/
/* 013 */
.button013 a {
    background: #eee;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    z-index: 0;
    border-left: solid 5px #6bb6ff;
}

.button013 a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: #6bb6ff;
    transition: .3s;
    left: 0;
}

.button013 a:hover {
    color: #FFF;
}

.button013 a:hover:before {
    width: 100%;
    z-index: -1;
}

.nav {
    display: inline-block;
}

.nav ul {
    list-style:none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav li {
    margin-right: 10px;
}

/*
<ul style="list-style: none; padding: 0; margin: 0; display: flex;">
<li style="margin-right: 10px;">
*/