@charset "utf-8";

/* MV
----------------------------------------------------------------------------- */
.pages-ttl{
    background-color: #fff;
    padding: 140px 0 60px;
/*    margin-bottom: 400px;*/
}

.pages-ttl .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pages-ttl-main{
    font-size: 30px;
    font-weight: bold;
}

/* mv */
.pages-bg{
    width: 100vw;
    height: 400px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
/*
    position: fixed;
    z-index: -1;
    width:100vw;
    height: 100vh;
    top:0;
    left:0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
*/
}

@media screen and (max-width:768px){
    .pages-ttl{
        padding: 120px 0 50px;
    }

    .pages-ttl-main{
        font-size: 25px;
        font-weight: bold;
    }

    /* mv */
    .pages-bg{
        height: 200px;
    }
}

/* path
----------------------------------------------------------------------------- */
.pages-ttl-path ol{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.pages-ttl-path ol li::after{
    content: "/";
    display: inline-block;
    margin: 0 5px;
}
.pages-ttl-path ol li:last-child::after{
    content: "";
}
.pages-ttl-path ol li a{
    color: #A09379;
    text-decoration: underline;
}
.pages-ttl-path ol li a:hover{
    text-decoration: none;
}


@media screen and (max-width:768px){
    .pages-ttl-path{
        display: none;
    }
}

/* 親ページ：list
----------------------------------------------------------------------------- */

.pages-main-list ul li{
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
    justify-content: space-between;
}
.pages-main-list ul li:nth-child(2n){
    flex-direction: row-reverse;
}

.pages-main-list-img,
.pages-main-list-txt{
    width:calc(50% - 25px);
}
.pages-main-list-img{
    
}
.pages-main-list-txt{
    
}
.pages-main-list-txt-inner{
    padding-left: 30px;
    border-left: 1px solid #A09379;
    margin-bottom: 30px;
}
.pages-main-list-img-ttl{
    font-size:25px;
    font-weight: bold;
    margin-bottom: 30px;
}

.pages-main-list-txt-btn{
    text-align: right;
}
.pages-main-list-txt-btn a{
    display: inline-block;
    background-color: #A09379;
    color: #fff;
    text-align: center;
    width:315px;
    height: 60px;
    line-height: 60px;
    background-image: url("../images/pages_link.png");
    background-repeat: no-repeat;
    background-size:25px 10px;
    background-position: center right 20px;
}

@media screen and (max-width:768px){
    .pages-main-list ul li{
        display: block;
        margin-bottom: 50px;
    }
    .pages-main-list ul li:nth-child(2n){
        flex-direction: row;
    }

    .pages-main-list-img,
    .pages-main-list-txt{
        width:100%;
    }
    .pages-main-list-img{
        margin-bottom: 25px;
    }
    .pages-main-list-txt{

    }
    .pages-main-list-txt-inner{
        padding-left: 20px;
        margin-bottom: 20px;
    }
    .pages-main-list-img-ttl{
        font-size:20px;
        margin-bottom: 20px;
    }

    .pages-main-list-txt-btn{
        text-align: center;
    }
    .pages-main-list-txt-btn a{
        width:300px;
        height: 50px;
        line-height: 50px;
        background-position: center right 10px;
    }
}

/* 子ページ：main
----------------------------------------------------------------------------- */
.pages-main{
    background-color: #fff;
    width:100%;
    padding: 100px 0;   
}
.pages-main-col{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
@media screen and (max-width:768px){
    .pages-main{
        padding: 60px 0 20px;   
    }
    .pages-main-col{
        display: block;
    }
}

/* 本文 */
.pages-main-col-content{
    width:calc(100% - 300px);
}

.pages-main-col-content h1,
.pages-main-col-content h2{
    font-size:30px;
    text-align: center;
    color: #A09379;
    font-weight: bold;
    margin-bottom: 50px;
}
.pages-main-col-content p{
    margin-bottom: 50px;
}
.pages-main-col-content strong{
    font-weight: bold;
    color: #A09379;
}
.pages-main-col-content table{
    width: 100%;
}
.pages-main-col-content table th{
    font-weight: bold;
    padding: 5px 10px;
}
.pages-main-col-content table td{
    padding: 5px 10px;
}
@media screen and (max-width:768px){
    .pages-main-col-content{
        width:100%;
    }

    .pages-main-col-content h1,
    .pages-main-col-content h2{
        font-size:20px;
        margin-bottom: 30px;
    }
    .pages-main-col-content p{
        margin-bottom: 30px;
    }
}

/* 関連ページ */
.pages-main-col-relation{
    width: 250px;
    margin-left: 50px;
}
.pages-main-col-relation-ttl{
    padding: 5px 20px;
    border-left: 1px solid #A09379;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: bold;
}

.pages-main-col-relation ul li{
    border-bottom: 1px solid #E6E6E6;
}
.pages-main-col-relation ul li a{
    display: block;
    background-image: url("../images/pages_arr.png");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 5px 10px;
    padding: 10px 40px 10px 0;
}

@media screen and (max-width:768px){
    .pages-main-col-relation{
        width: 100%;
        margin-left: 0;
    }
    .pages-main-col-relation-ttl{
        padding: 5px 20px;
        margin-bottom: 20px;
        font-size: 17px;
    }

    .pages-main-col-relation ul li a{
        display: block;
        background-image: url("../images/pages_arr.png");
        background-repeat: no-repeat;
        background-position: right 20px center;
        background-size: 5px 10px;
        padding: 10px 40px 10px 0;
    }
}

