@charset "UTF-8";
/*-----------------------------------
base
-----------------------------------*/
#contents>*:first-child {
    padding-top: 100px;
}
#contents>*:last-child {
  padding-bottom: 130px;
}
@media screen and (max-width: 640px) {
    #contents>*:last-child {
        padding-bottom: 60px;
    }
    #contents>*:first-child {
        padding-top: 40px;
    }
}
/*-----------------------------------
見出し1
-----------------------------------*/
.el_lv1Heading {
    padding: 170px 0 70px;
    position: relative;
    text-align: center;
    line-height: 1;
    position: relative;
    background: url(../img/common/lower_bg01.jpg) no-repeat center center/cover;
}
.el_lv1Heading::before {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0.75;
    background-color: #686868;
    position: absolute;
    inset: 0;
    z-index: 0;
}
.el_lv1Heading p {
    font-size: 15px;
    color: #fff;
    position: relative
}
.el_lv1Heading p::before {
    font-size: 35px;
    letter-spacing: 0.1em;
    content: attr(data-en);
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
    font-family: 'Cinzel', serif;
}
@media screen and (max-width: 940px) {
    .el_lv1Heading {
        padding: 120px 0 50px;
    }
}
@media screen and (max-width: 640px) {
    .el_lv1Heading {
        padding: 110px 0 30px;
    }
    .el_lv1Heading p {
        font-size: 13px;
    }
    .el_lv1Heading p::before {
        font-size: 23px;
        margin-bottom: 10px;
    }
}
/*-----------------------------------
パンくずリスト
-----------------------------------*/
.breadcrumbs {
    padding-top: 5px;
    padding-bottom: 6px;
}
.breadcrumbs span {
    font-size: 11px;
}
.breadcrumbs span a {
    color: #978069;
}
.breadcrumbs span a:hover {
    text-decoration: underline;
}
.breadcrumbs .around {
    color: #cdcdcd;
    padding-left: 8px;
    padding-right: 6px;
    font-weight: bold;
}
@media screen and (max-width: 640px) {
    .breadcrumbs {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
        overflow: auto;
        white-space: nowrap;
    }
}
