@charset "utf-8";

/*-----------------------------------
breadcrumbs
-----------------------------------*/
.breadcrumbs{
    overflow: hidden;
    margin: 0;
    background-color: #ff9933;
    color: #FFF;
}
.breadcrumbs a{
    position: relative;
    display: block;
    text-decoration: none;
    -webkit-transition: 0s;
    transition: 0s;
    color: #FFF;
    text-decoration: none;
    z-index: 10000;
}
.breadcrumbs a span{
    font-weight: bold;
}
.breadcrumbs li:first-child a{
    padding-left: 0;
}
.breadcrumbs li:last-child{
    padding-left: 16px;
}
.breadcrumbs li:last-child a{
    margin-left: -16px;
    padding-right: 8px;
}
.breadcrumbs a::after,
.breadcrumbs a::before{
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1.5em;
    border-top: 1.5em solid transparent;
    border-bottom: 1.5em solid transparent;
    border-left: 1em solid;
    right: -1em;
    padding-left: 2px;
}
.breadcrumbs a::after{
    z-index: 2;
    border-left-color: #ff9933;
}
.breadcrumbs a::before{
    border-left-color: #FFF;
    right: -1.1em;
    z-index: 1;
}
.breadcrumbs a:hover::after{
    border-left-color: #ff9933;
}
.breadcrumbs li:last-child a::after,
.breadcrumbs li:last-child a::before{
    content: normal;
}
/*--Large screens only--*/
@media print, screen and (min-width: 1025px){
    .breadcrumbs ul{
        width: 1000px;
        margin: 0 auto;
    }
    .breadcrumbs li{
        float: left;
        padding-top: 4px;
        font-size: 0.8em;
    }
    .breadcrumbs li a{
        margin-top: -4px;
        padding:4px 3px 4px 16px;
    }
    /*clear*/
    .breadcrumbs ul{
        display: block;
        min-height: 1%;
    }
    .breadcrumbs ul:after{
        clear: both;
        content:".";
        display: block;
        height: 0;
        visibility: hidden;
    }
}
/*--Small~Medium screens--*/
@media only screen and (max-width: 1024px){
    .breadcrumbs ul{
        display:table;
    }
    .breadcrumbs li{
        display:table-cell;
        font-size: 0.7em;
        white-space:nowrap;
    }
    .breadcrumbs li:last-child a{
        padding-right: 30px;
    }
}
/*--Medium screens--*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .breadcrumbs ul{
        margin-left: 30px;
    }
    .breadcrumbs li{
        padding-top: 4px;
        font-size: 0.8em;
    }
    .breadcrumbs li a{
        margin-top: -4px;
        padding:4px 3px 4px 16px;
    }
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    .breadcrumbs ul{
        margin-left: 20px;
    }
    .breadcrumbs a{
        padding:2px 3px 2px 16px;
    }
    .breadcrumbs li:last-child a{
        padding-right: 30px;
    }
}

/*-----------------------------------
parts
-----------------------------------*/
section{
    padding: 50px 0;
}
h1{
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 3px solid #333;
    font-size: 1.4em;
    font-weight: bold;
}
h1:after{
    position: absolute;
    content: "";
    bottom: -3px;
    left: 0;
    width: 100px;
    border-bottom: 3px solid #ff9933;
}
h2{
    margin-bottom: 20px;
    padding: 0 0 0 15px;
    border-left: 4px solid #ff9933;
	font-size: 1.1em;
    font-weight: bold;
}
h3{
    margin-bottom: 15px;
    padding: 0 0 0 15px;
    border-left: 4px solid #ff9933;
    font-weight: bold;
}

.container p{
    margin-bottom: 25px;
}
li p,dd p,td p{
    margin-bottom: 0;
}
.mb{
    margin-bottom: 25px;
}
.mt{
    margin-top: 25px;
}
p.sup,
.sup li{
    position: reabsolute;
    padding-left: 1em;
}
p.sup::before,
.sup li::before{
    position: absolute;
    content: "※";
    text-indent: -1em;
}
.we{
    color:#FF0033;
}
.we span{
    font-weight: bold;
}
.small{
    font-size: 0.9em;
}
.right{
    text-align: right;
}
.center{
    text-align: center;
}
.hd{
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.1em;
}
p + p.hd{
    margin-top: 20px;
}
#boxer.mobile{
    z-index: 50000;
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    section{
        padding: 20px 0;
    }
    h1{
        margin-bottom: 20px;
        font-size: 1.1em;
        line-height: 1.8;
    }
    h1:after{
        width: 50px;
    }
    h2{
        margin-bottom: 20px;
        font-size: 1.05em;
        line-height: 1.8;
    }
    .hd{
        font-size: 1.05em;
    }
}
/*-----------------------------------
icon
-----------------------------------*/
.icon li{
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
}
.target li{
    border: 1px solid #ff9933;
    color: #ff9933;
}
.property li{
    border: 1px solid #EC407A;
    color: #EC407A;
}
/*-----------------------------------
2カラム
-----------------------------------*/
.col-l{
    float: left;
    width: 68%;
    margin-right: 2%;
}
.col-r{
    float: left;
    width: 28%;
    margin-left: 2%;
}
/*--Small~Medium screens--*/
@media only screen and (max-width: 1024px){
    .col-l{
        float: none;
        width: 100%;
        margin-right: 0;
    }
    .col-r{
        float: none;
        width: 100%;
        margin-left: 0%;
    }
    .col-r section{
        padding-top: 0;
    }
}
/*-----------------------------------
table
-----------------------------------*/
table{
    width: 100%;
    border-top: 1px solid #c2c3c4;
}
th,td{
    padding: 10px 15px;
    border-bottom: 1px solid #c2c3c4;
}
th{
    background-color: #eeeeee;
}
td{
    background-color: #FFF;
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    th,td{
        padding: 5px 10px;
    }
    .sp-table th,.sp-table td{
        display: block;
        width: 100%;
    }
}

/*-----------------------------------
nodata-txt
-----------------------------------*/
.nodata-txt{
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f3f3f3;
}
.nodata-txt p{
    margin-bottom: 0;
    text-align: left;
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    .nodata-txt{
        margin-bottom: 20px;
    }
}

/*-----------------------------------
footer-inq
-----------------------------------*/
.form-btn a{
    display: block;
    margin: 0 auto;
    background-color: #87bb1e;
    border-radius: 5px;
    box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.2) inset;
    font-weight: bold;
    color: #FFF;
    text-align: center;
    text-decoration: none;
}
/*--Large screens--*/
@media print, screen and (min-width: 768px){
    .footer-inq{
        padding: 50px 0 55px;
        background-color: #eeeeee;
        text-align: center;
    }
    .footer-inq,
    .footer-inq a,
    .footer-inq a:hover{
        text-decoration: none;
    }
    .container .footer-inq p{
        margin-bottom: 10px;
        font-size: 1.2em;
        font-weight: bold;
    }
    .footer-inq .form-btn{
        margin-bottom: 10px;
    }
    .footer-inq .form-btn a{
        width: 400px;
        padding: 10px 20px 13px;
        font-size: 1.5em;
    }
    .footer-inq .form-btn a img{
        width: 24px;
        margin-right: 8px;
        vertical-align: -7px;
    }
    .footer-inq .tel span{
        margin-right: 5px;
        font-size: 0.8em;
        font-weight: bold;
    }
    .footer-inq .tel a{
        font-size: 1.3em;
        font-weight: bold;
        color: #333;
    }
    .footer-inq .tel a img{
        width: 20px;
        margin-right: 3px;
        vertical-align: -3px;
    }
}
/*--Medium screens--*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .footer-inq{
        padding: 40px 0 45px;
    }
    .footer-inq .form-btn a{
        width: 300px;
        padding: 8px 20px 11px;
        font-size: 1.2em;
    }
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    .footer-inq{
        position: fixed;
        z-index: 900;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 12px 0 15px;
        background-color: rgba(0, 0, 0, 0.8);
        font-size: 0.8em;
        line-height: 1.5;
        color: #FFF;
        text-align: center;
    }
    .footer-inq .wrap{
        padding: 0 10px;
    }
    .container .footer-inq p{
        margin-bottom: 10px;
        font-weight: bold;
    }
    .footer-inq ul{
        display: table;
        table-layout: fixed;
        width: 100%;
        border-collapse: separate;
        border-spacing: 10px 0;
    }
    .footer-inq ul li{
        display: table-cell;
        width: 50%;
        border: 2px solid #FFF;
        border-radius: 5px;
        vertical-align: middle;
    }
    .footer-inq a{
        display: block;
        padding: 10px 5px;
        background-color: transparent;
        box-shadow: 0;
        font-size: 1.2em;
        font-weight: bold;
        color: #FFF;
        text-decoration: none;
    }
    .footer-inq a span{
        display: none;
    }
    .footer-inq a img{
        width: 18px;
        margin-right: 6px;
        vertical-align: -4px;
    }
}

/*-----------------------------------
clear
-----------------------------------*/
.col2,
.icon{
    display: block;
    min-height: 1%;
}

.col2:after,
.icon:after{
    clear: both;
    content:".";
    display: block;
    height: 0;
    visibility: hidden;
}
