@charset "UTF-8";

/* ----------------------------------
    ヒーロー
----------------------------------- */


.hero_img {
    width: 100%;
    height: 600px;
    background: url('/images/saiyou/hero.jpg') no-repeat center top;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero_img p {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
}
@media screen and (max-width:1023px){
    .hero {
        width: 100%;
        top: 60px;
        margin-top: 120px;
    }
    .hero_img {
        height: calc(100vw / 16 * 9);
        position: relative;
    }
    .hero_img p {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
}
@media screen and (max-width:1023px){
    .hero {
        width: 100%;
        margin-top: 120px;
    }
}


/* ----------------------------------
    会社概要
----------------------------------- */
.apeal1 {
    text-align: center;
    background: url('../images/hana.png') no-repeat center top;
    background-size: contain;
    background-position: 30px 30px;
    padding: 50px 0;
    background-color: #FFF7EF;
}

.jizai {
    width: 1000px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.jinzaibox {
    width: 47%;
    padding: 20px;
    background-color: #fff;
    margin-bottom: 20px;
}
.jinzai_title {
    font-size: 26px;
    font-weight: bold;
    color: #63B8D1;
    padding-bottom: 20px;
}
.jinzai_txt {
    text-align: left;
}

@media screen and (max-width:1023px){
    .jizai {
        width: 80%;
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
    }
}
@media screen and (max-width:699px){
    .jizai {
        width: 80%;
        display: block;
        margin: 0 auto;
    }
    .jinzaibox {
        width: 100%;
        padding: 20px;
        background-color: #fff;
    }
}



.apeal2 {
    text-align: center;
    background-size: contain;
    background-position: 30px 30px;
    padding: 50px 0;
    background-color: #FFF7EF;
}

.saiyou_table {
    background-color: #fff;
    border-radius: 30px;
    width: 800px;
    padding: 50px;
    margin: 0 auto;
}
table {
    border-collapse: collapse;
    width: 100%;
}

td {
    border: solid 1px #AB987F;
    padding: 10px;
    text-align: left;
}

.td1 {
    width: 150px;
}

.copy1 {
    font-size: 36px;
    font-weight: bold;
    color: #735429;
    padding-bottom: 20px;
}

.copy2 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    color: #735429;
    padding-bottom: 80px;
}


@media screen and (max-width:1023px){
    .saiyou_table {
        width: 80%;
    }
}

@media screen and (max-width:599px){
    .saiyou_table {
        width: 95%;
    }
    table {
        font-size: 16px;
    }
    .td1 {
        width: 110px;
    }
}




/* ----------------------------------
    マップ
----------------------------------- */

.apealcopy {
    padding: 40px 0;
    /* background-color: #FFF7EF; */
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #735429;
    padding-bottom: 20px;
}


.boshu_btn {
    display: block;
    margin-top: 30px;
    padding: 10px;
    width: 200px;
    border-radius: 40px;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    background-color: #6DC25E;
    box-shadow: 0px 5px 0px #459c36;
    transition: .3s;
    margin: 20px auto;
  }
  
  .boshu_btn:hover {
    color: #fff;
    box-shadow: unset;
    transform: translateY(4px);
  }

.pallimg {
    width: 100%;
    height: 500px;
    position: relative;
    background: url('/images/saiyou/pall.jpg') no-repeat center top;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2;
}
@media screen and (max-width:1023px){
    .pallimg {
        height: 300px;
        width: 100%;
        background-attachment: local;
        background-position: center center;
    }
}