@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    height: 100%;
    overflow-x: hidden;
}

.font-poppins {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 100;
}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.mobile {
    display: none;
}

nav.left-nav {
    position: fixed;
    z-index: 1;
    width: 250px;
    height: 100vh;
    background-color: #232323;
    color: #fff;
    box-shadow: 2px 0px 3px rgba(0, 0, 0, 0.1);
}

nav.left-nav .sub-menu {
    display: none;
}

nav.left-nav li {
    border-bottom: 1px solid #000;
    height: 47px;
    padding-left: 20px;
}

nav.left-nav li a {
    color: #fff;
    line-height: 47px;
    text-decoration: none;
}

nav.left-nav li a:hover {
    color: #00a9d1;
}

nav.left-nav li a i {
    margin-right: 4px;
}

div.page-wrap {
    position: absolute;
    z-index: 10;
    width: 100%;
    left: 0;
    -webkit-transition:left 0.2s ease-in-out;
    transition:left 0.2s ease-in-out;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

div.page-wrap.open {
    left: 250px;
}

div.page-wrap.open .bar {
    left: 250px;
}

div.page-wrap.open footer .fixed {
    left: 250px;
}

header .top {
    width: 100%;
    height: 40px;
    background-color: #f4f4f4;
    padding: 0 60px;
}

header .left {
    float: left;
}

header .right {
    float: right;
}

header .right p {
    display: inline-block;
    line-height: 40px;
}

header .title {
    line-height: 40px;
}

header .button {
    display: inline-block;
    width: auto;
    height: 36px;
    line-height: 36px;
    margin-top: 4px;
    box-sizing: border-box;
    border: 1px solid #58a205;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

header .button span {
    display: block;
    color: #FFFFFF;
    padding: 6px 16px;
    font-size: 13px;
    height: 34px;
    line-height: 20px;
    background-color: #6eca06;
    border: 1px solid #9ada51;
    text-shadow: none;
    -moz-text-shadow: none;
    -webkit-text-shadow: none;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    text-align: center;
}

header .button.intern {
    border: 1px solid #0597a2;
}

header .button.intern span {
    border: 1px solid #51d1da;
    background-color: #06bdca;
}

header a.button {
    text-decoration: none;
}

header .button i {
    margin-right: 6.5px;
}

header .tel {
    color: #1a1a1a;
    margin-left: 35px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

header .tel i {
    margin-right: 6.5px;
    font-size: 16px;
    font-weight: 100;
}

header .menu {
    height: 74px;
    border-bottom: 1px solid #f1f2f2;
    padding: 0 60px;
    margin-top: 2px;
}

header .menu .right {
    float: none;
    overflow:hidden;
    /zoom:1;
}

header .menu img.logo {
    margin-top: 20px;
}

header .menu nav {
    float: right;
}

header .menu nav li {
    float: left;
    list-style: none;
}

header .menu nav li:hover {
    border-bottom: 4px solid #00a9d1;
}

header .menu.bar nav li:hover {
    border-bottom: none;
}

header .menu li a {
    display: block;
    height: 72px;
    line-height: 72px;
    margin: 0 18px;
    color: #1a1a1a;
    text-decoration: none;
}

header .menu a:hover {
    color: #00a9d1;
}

header .menu a.first {
    margin-left: 0;
}

header .menu a.last {
    margin-right: 0;
}

header .menu a i {
    margin-right: 4px;
}

header .menu .sub-menu {
    display: none;
}

header .bar {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transition:left 0.2s ease-in-out;
    transition:left 0.2s ease-in-out;
    display: none;
    height: 60px;
    width: 100vw;
    background-color: #ffffff;
    margin-top: -12px;
    border-bottom: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 999;
}

header .bar img.logo {
    margin-top: 15px;
}

.breadcrumbs {
    padding: 10px 60px;
}

.breadcrumbs li {
    float: left;
    list-style: none;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 100;
    color: #777;
}

.breadcrumbs a {
    color: #00a9d1;
    text-decoration: none;
}

footer {
    background-color: #000000;
    height: 58px;
    text-align: center;
    color: #ffffff;
    font-size: 10px;
    line-height: 58px;
    font-family: 'Poppins', Arial, sans-serif;
    margin-top: auto;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    color: #22c0d8;
}

footer .fixed {
    height: 46px;
    background-color: rgb(34, 192, 216);
    border-top: 1px solid #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transition:left 0.2s ease-in-out;
    transition:left 0.2s ease-in-out;
    display: none;
}

footer .fixed a {
    display: block;
    width: 33.3%;
    height: 45px;;
    float: left;
    line-height: 10px;
    font-size: 10px;
    padding-top: 7px;
}

footer .fixed a:hover {
    background-color: #0074a2;
}

footer .fixed a i {
    display: block;
    font-size: 20px;
    margin-bottom: 1px;
}


.two-column {
    padding: 10px 60px;
}

.two-column .leftside {
    width: calc(100% - 220px);
    margin: 0;
    padding: 0 20px 0 0;
    float: left;
}

.two-column .rightside {
    width: 200px;
    margin: 0;
    float: right;
}

.bottom-buttons {
    text-align: center;
    margin-bottom: 64px;
}

.bottom-buttons .list-button {
    display: inline-block;
    margin: 48px 48px;
    background-color: #6eca06;
    color: #ffffff;
    border-radius: 100px;
    text-decoration: none;
    padding: 14px 37px 12px;
    font-weight: bold;
}

.bottom-buttons .list-button.brue {
    background-color: #22c0d8;
}

.bottom-buttons .list-button span {
    margin-right: 4px;
}

#flashMessage {
    font-size: 14px;
    line-height: 14px;
    font-weight: bold;
    color: #fff;
    padding: 1em;
    margin: 0 60px;
    border: none;
    border-radius: 3px;
    clear: both;
}

#flashMessage.success {
    background-color: #92d050;
}

#flashMessage.error {
    background-color: #d05050;
}

.error-message {
    color: red;
}

/* CakeAdminLTE の flash メッセージ用のスタイル 開始 */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    padding-left: 30px;
    margin-left: 15px;
    position: relative;
}

.alert.flash {
    margin: 0 60px;
}

.alert button.close {
    display: none;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
/* CakeAdminLTE の flash メッセージ用のスタイル 終了 */