/*
-------------------------------------------------------
footer section 構成
-------------------------------------------------------
.main
    .contents-container
        link-area
            .banner-area
            .nav-area
                .nav-area-container
        .about-area
            .sm-contaner
            .contact
.copy
---------------------------------------------------------
*/
/* Kiwi Maru
L 300
R 400
M 500 */
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap');

/* ------------------------------------------------------
utility class
------------------------------------------------------- */
#footer-common {
    position: relative;
}
#footer-common:before {
    content: "";
    width: 100%;
    background: url(/assets/images/common/cover-footer.png) center top / 1300px 100px repeat-x;
    display: block;
    top: 0;
    height: 100px;
    position: absolute;
    left: 0;
}
#footer-common .flex {
    display: flex;
}

#footer-common .flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    #footer-common:before {
        background: url(/assets/images/common/cover-footer.png) center top / auto 50px repeat-x;
        height: 50px;
    }
}


/* ------------------------------------------------------
common
------------------------------------------------------- */

#footer-common * {
    font-family: 'Kiwi Maru', serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #42210b;
    font-weight: 500;
}


/* as for fonts, use originaly used tukushi maru gothic   */

#footer-common ul {
    margin: 0;
    padding: 0;
}

#footer-common li {
    list-style: none;
}

#footer-common li a {
    text-decoration: none;
    color: #42210b;
    font-weight: 500;
    font-size: 15px !important;
}

#footer-common img {
    max-width: 100%;
    height: auto;
}


/*下線装飾疑似要素*/

#footer-common span.underline {
    position: relative;
    padding-bottom: 6px;
    font-size: 18px;
}

#footer-common span.underline:after {
    position: absolute;
    content: "";
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #b1c677;
    left: 0;
}


/* ------------------------------------------------------
main
------------------------------------------------------- */

#footer-common .main {
    padding-bottom: 75px;
    /* background-image: url("https://okayamakobo.daidai.dev/liaisonproject/wp-content/themes/liaison/images/footer/footer-bg.png"); */
    /* background-image: url("../images/footer/footer-bg.png"); */
    background-size: contain;
    padding-top: 168px;
    background-color: #997f50;
    background-repeat: repeat-x;
}

@media only screen and (max-width: 769px) {
    #footer-common .main {
        padding-top: 60px;
        background-size: contain;
        background-repeat: repeat-x;
        background-color: #997f50;
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 339px) {
    #footer-common .main {
        padding-top: 50px;
    }
}


/* ------------------------------------------------------
main .contents-container
------------------------------------------------------- */

#footer-common .contents-container {
    width: 800px;
    margin: 0 auto;
    column-gap: 80px;
}

@media only screen and (min-width: 770px) and (max-width: 1119px) {
    #footer-common .contents-container {
        width: 95%;
        margin: 0 auto;
        column-gap: 40px;
    }
}

@media only screen and (max-width: 769px) {
    #footer-common .contents-container {
        width: 95%;
        margin: 0 auto;
    }
}


/* ------------------------------------------------------
main .contents-container .link-area
------------------------------------------------------- */

#footer-common .link-area {
    width: 45%;
    padding: 1%;
}

@media only screen and (max-width: 769px) {
    #footer-common .link-area {
        width: 100%;
        padding: 16px;
    }
}


/* ------------------------------------------------------
main .contents-container .link-area .banner-area
------------------------------------------------------- */

#footer-common .banner-area {
    justify-content: flex-start;
}

#footer-common .banner-area>figure {
    width: 50%;
    padding-right: 20px;
    max-width: 200px;
}

#footer-common .banner-area>figure a {
    transition: all .3s ease-in-out;
}
#footer-common .banner-area>figure a:hover {
    opacity: .6;
}


@media only screen and (max-width: 769px) {
    #footer-common .banner-area {
        justify-content: center;
    }
    #footer-common .banner-area>figure {
        width: 50%;
        column-gap: 10px;
        padding: 0 5px;
    }
    #footer-common .banner-area>figure a {
        transition: none;
    }
}


/* ------------------------------------------------------
main .contents-container .link-area .nav-area
------------------------------------------------------- */

#footer-common .nav-area .heading {
    padding: 1.5em 0 8px 0;
    border-bottom: 2px solid #b1c677;
    font-size: 20px;
    margin-bottom: 15px;
}
@media only screen and (max-width: 769px) {
    #footer-common .nav-area .heading {
        font-size: 16px;
    }
}

/* ------------------------------------------------------
main .contents-container .link-area .nav-area .nav-area-container
------------------------------------------------------- */

#footer-common .nav-area-container * {
    font-size: 13px;
}

#footer-common .nav-area-container ul.nav1col {
    width: 60%;
}

@media only screen and (max-width: 339px) {
    #footer-common .nav-area-container ul.nav1col {
        width: 100%;
    }
}

#footer-common .nav-area-container ul.nav2col {
    width: 40%;
}

@media only screen and (max-width: 339px) {
    #footer-common .nav-area-container ul.nav2col {
        width: 100%;
    }
}

#footer-common .nav-area-container {
    padding-top: 0;
}

#footer-common .nav-area-container li {
    line-height: 2.0;
    padding-left: 1em;
    position: relative;
    margin-bottom: 5px;
}

#footer-common .nav-area-container li::before {
    content: '';
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: solid 1px #42200b;
    border-right: solid 1px #42200b;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: -2px;
}


/* ------------------------------------------------------
main .contents-container .about-area
------------------------------------------------------- */

#footer-common .about-area {
    width: 40%;
    padding: 1%;
}

@media only screen and (max-width: 769px) {
    #footer-common .about-area {
        width: 100%;
        padding: 16px;
        text-align: center;
    }
}


/* ------------------------------------------------------
main .contents-container .about-area .logo
------------------------------------------------------- */

#footer-common .about-area .logo {
    width: 10.5em;
}

@media only screen and (max-width: 769px) {
    #footer-common .about-area .logo {
        margin: 0 auto;
    }
}


/* ------------------------------------------------------
main .contents-container .about-area address
------------------------------------------------------- */

#footer-common .about-area address {
    font-size: 13px;
    letter-spacing: .04em;
    text-decoration: none;
    font-style: normal;
    line-height: 1.69;
    margin-top: 1.5rem;
}


/* ------------------------------------------------------
main .contents-container .about-area .sm-container
------------------------------------------------------- */

#footer-common .about-area .sm-container {
    margin-top: 0.8rem;
    margin-bottom: 25px;
}

#footer-common .sm-container img {
    padding-right: 20px;
    display: inline;
}

#footer-common .sm-container a {
    position: relative;
    transition: all .3s ease-in-out;
}

#footer-common .sm-container a:hover {
    opacity: .6;
}

@media only screen and (max-width: 769px) {
    #footer-common .sm-container a {
        transition: none;
    }
}


/*縦線*/

#footer-common .sm-container a::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 1.2em;
    right: 10px;
    background-color: #42200b;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
}

#footer-common .sm-container a:last-child:after {
    display: none;
}


/* ------------------------------------------------------
main .contents-container .about-area .contact
------------------------------------------------------- */

#footer-common .about-area .contact {
    margin-top: 1rem;
}

#footer-common .about-area .contact a {
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0.4rem 2rem;
    background-color: #d4b400;
    border-radius: 100px;
    border: 2px dotted #42200b;
    font-size: 16px;
}
#footer-common .about-area .contact a.btn-line {
    text-decoration: none;
    font-size: 0.8rem;
    padding: .5rem .2rem .5rem 1.8rem;
    background-color: #50ae31;
    border-radius: 100px;
    border: 2px dotted #ffd319;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0;
    width: 275px;
    display: block;
    margin-top: 20px;
    box-sizing: border-box;
}
#footer-common .about-area .contact a.btn-line span {
    font-family: 'Lato';
    color: #ffffff;
}

#footer-common .about-area .contact>a>img {
    display: inline;
    margin-right: 1rem;
}
#footer-common .about-area .contact>a.btn-line>img {
    margin-right: .5rem;
    margin-top: 3px;
    vertical-align: text-top;
}

@media only screen and (max-width: 339px) {
    #footer-common .about-area .contact {
        margin-top: 1rem;
        display: block;
    }
    #footer-common .about-area .contact a {
        text-decoration: none;
        font-size: 11px;
        padding: 4px 8px;
        background-color: #d4b400;
        border-radius: 100px;
        border: 1px dotted #42200b;
    }
    #footer-common .about-area .contact>a>img {
        display: inline;
        margin-right: 4px;
    }
}
@media only screen and (max-width: 765px) {
    #footer-common .about-area .contact a.btn-line {
        font-size: 14px;
        padding: .5rem .2rem .5rem 1.8rem;
        margin: 20px auto 0;
    }
}

.link-privacy {
    margin: 20px 0 0;
    text-align: center;
    max-width: 275px;
}
.link-privacy a {
    font-size: 14px;
}
@media (max-width: 991px) {
    .link-privacy {
        margin: 30px auto 0;
    }
}


/* ------------------------------------------------------
copy
------------------------------------------------------- */

#footer-common .copy {
    text-align: center;
    padding: 1rem 0;
    background-color: #5f3814;
    color: #fff;
    font-size: 15px;
}






/* 20230307 翻訳対応 */
html:lang(en) #footer-common .about-area .contact a {
    box-sizing: border-box;
    display: flex;
    padding: .4rem 1rem .4rem 1rem;
    width: 275px;
}
html:lang(en) #footer-common .about-area .contact>a>img {
    margin-right: 0.5rem;
}

@media (max-width: 769px) {
    html:lang(en) #footer-common .about-area .contact a {
        margin: 0 auto 15px;
        text-align: left;
    }
    html:lang(en) #footer-common .about-area .contact>a>img {
        margin-right: 0.5rem;
    }
}























.footer {
    display: block;
    width: 100%;
    background-color: #ad8a53;
    position: relative;
    padding: 67px 0 0;
    color: #ffffff;
    font-family: fot-tsukuardgothic-std, sans-serif;
}
.footer .inner {
    max-width: 860px;
    margin: 0 auto 100px;
    width: 100%;
    display: flex;
    gap: 0 65px;
}
.footer .inner .elem-l {
    flex: 1;
}
.footer .inner .elem-l .dl-logo {
    display: flex;
    align-items: center;
    gap: 0 15px;
    margin-bottom: 16px;
}
.footer .inner .elem-l .dl-logo .name {
    font-size: 17px;
    letter-spacing: 0;
    line-height: 1.11;
    margin-bottom: 3px;
}
.footer .inner .elem-l .dl-logo .name-en {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
}
.footer .inner .elem-l .txt-add {
    font-size: 11px;
    line-height: 1.45;
}
.footer .inner .elem-l .list-flink {
    display: flex;
    margin-top: 45px;
    flex-wrap: wrap;
    gap: 0;
}
.footer .inner .elem-l .list-flink li {
    padding-left: 1em;
    position: relative;
}
.footer .inner .elem-l .list-flink li:nth-child(odd) {
    width: 30%;
}
.footer .inner .elem-l .list-flink li:nth-child(even) {
    width: 49%;
}
.footer .inner .elem-l .list-flink li::before {
    content: "";
    display: block;
    width: 5px;
    height: 1px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    top: 50%;
}
.footer .inner .elem-l .list-flink a {
    display: block;
    font-size: 14px;
    letter-spacing: -.02em;
    font-weight: bold;
    color: #ffffff;
}
.footer .inner .elem-l .list-flink .link-priv a {
    font-weight: 100;
}

.footer .inner .elem-r {
    width: 450px;
}
.footer .inner .elem-r .txt-tel {
    display: flex;
    gap: 0 12px;
    align-items: center;
    padding-left: 30px;
    border-bottom: 2px dotted #ffffff;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-bottom: 10px;
    background: transparent url(../images/common/icon_tel.svg) left center / 20px 20px no-repeat;
}
.footer .inner .elem-r .txt-tel span {
    line-height: 1;
}
.footer .inner .elem-r .txt-tel .txt-l {
    font-size: 17px;
}
.footer .inner .elem-r .txt-tel .txt-s {
    font-size: 12px;
}
.footer .inner .elem-r .elem-tel {
    display: flex;
    justify-content: space-between;
}
.footer .inner .elem-r .elem-tel dl {
    display: flex;
    gap: 0 5px;
}
.footer .inner .elem-r .elem-tel dl dt,
.footer .inner .elem-r .elem-tel dl dd {
    line-height: 1;
}
.footer .inner .elem-r .elem-tel dl dt {
    color: #ad8a53;
    background-color: #ffffff;
    padding: 3px 3px;
    font-size: 11px;
}
.footer .inner .elem-r .elem-tel dl dd {
    font-size: 20px;
    letter-spacing: .04em;
}
.footer .inner .elem-r .btn-mail {
    margin: 18px 0 30px;
}
.footer .inner .elem-r .btn-mail a {
    display: inline-block;
    background-color: #ff9600;
    line-height: 1;
    border-radius: 10px;
    padding: 0 18px 0;
}
.footer .inner .elem-r .btn-mail a span {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.5;
    padding: 9px 0 10px 23px;
    display: inline-block;
    background: transparent url(../images/common/icon_mail.svg) left center / 14px 10px no-repeat;
}
.footer .inner .elem-r .list-bnr {
    display: flex;
    gap: 0 17px;
}
.footer .inner .elem-r .list-bnr li img {
    max-width: 202px;
}

.footer .box-copy {
    background-color: #5f3814;
    position: relative;
    padding: 18px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}
.footer .box-copy .list-sns {
    display: flex;
    align-items: center;
    position: absolute;
    left: 30px;
    top: 7px;
    gap: 0 12px;
}
.footer .box-copy .list-sns a {
    display: block;
}
.footer .box-copy .txt-copy {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: .02em;
    line-height: 1;
}

.footer .totop {
    position: absolute;
    width: 51px;
    height: 51px;
    right: 23px;
    bottom: 25px;
}
.footer .totop a {
    display: block;
    font-family: 'Poppins', sans-serif;
    color: #218b22;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    border-radius: 50px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    background: #ffffff url(../images/common/icon_totop.svg) center top 9px / 14px 11px no-repeat;
    padding-top: 18px;
    position: absolute;
}






@media (max-width: 769px) {
    .footer {
        padding: 30px 0 0;
        box-sizing: border-box;
    }
    .footer .inner {
        max-width: 100%;
        margin: 0 auto 40px;
        gap: 30px 0;
        padding: 0 20px;
        flex-direction: column;
        box-sizing: border-box;
    }
    .footer .inner .elem-l {
        flex: 1;
    }
    .footer .inner .elem-l .dl-logo {
        gap: 0 15px;
        margin-bottom: 14px;
    }
    .footer .inner .elem-l .dl-logo .name {
        font-size: 16px;
        line-height: 1.2;
        margin-bottom: 3px;
    }
    .footer .inner .elem-l .txt-add {
        font-size: 12px;
        line-height: 1.45;
    }
    .footer .inner .elem-l .list-flink {
        flex-direction: column;
        margin-top: 20px;
        gap: 10px 0;
    }
    .footer .inner .elem-l .list-flink li {
        padding-left: 1em;
        position: relative;
    }
    .footer .inner .elem-l .list-flink li:nth-child(odd) {
        width: 100%;
    }
    .footer .inner .elem-l .list-flink li:nth-child(even) {
        width: 100%;
    }
    .footer .inner .elem-l .list-flink li::before {
        content: "";
        display: block;
        width: 5px;
        height: 1px;
        background-color: #ffffff;
        position: absolute;
        left: 0;
        top: 50%;
    }
    .footer .inner .elem-l .list-flink a {
        font-size: 15px;
        letter-spacing: 0;
    }

    .footer .inner .elem-r {
        width: 100%;
    }
    .footer .inner .elem-r .txt-tel {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px 0;
        padding-left: 25px;
        margin-bottom: 20px;
        background: transparent url(../images/common/icon_tel.svg) left center / 20px 20px no-repeat;
    }
    .footer .inner .elem-r .txt-tel .txt-l {
        font-size: 16px;
    }
    .footer .inner .elem-r .txt-tel .txt-s {
        font-size: 11px;
    }
    .footer .inner .elem-r .elem-tel {
        flex-direction: column;
        gap: 10px 0;
    }
    .footer .inner .elem-r .elem-tel dl {
        display: flex;
        gap: 0 5px;
    }
    .footer .inner .elem-r .elem-tel dl dt,
    .footer .inner .elem-r .elem-tel dl dd {
        line-height: 1;
    }
    .footer .inner .elem-r .elem-tel dl dt {
        padding: 3px 3px;
        font-size: 12px;
        width: 8em;
        text-align: center;
    }
    .footer .inner .elem-r .elem-tel dl dd {
        font-size: 20px;
        letter-spacing: .04em;
    }
    .footer .inner .elem-r .btn-mail {
        margin: 30px auto 20px;
        text-align: center;
    }
    .footer .inner .elem-r .btn-mail a {
        padding: 10px 18px 13px;
        display: inline-block;
        background-color: #ff9600;
        line-height: 1;
        border-radius: 10px;
    }
    .footer .inner .elem-r .btn-mail a span {
        color: #ffffff;
        font-size: 14px;
        line-height: 1;
        padding-left: 23px;
        background: transparent url(../images/common/icon_mail.svg) left top 5px / 14px 10px no-repeat;
    }
    .footer .inner .elem-r .list-bnr {
        align-items: center;
        flex-direction: column;
        gap: 20px 0;
    }

    .footer .box-copy {
        padding: 20px 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px 0;
    }
    .footer .box-copy .list-sns {
        display: flex;
        align-items: center;
        position: relative;
        left: auto;
        top: auto;
        gap: 0 15px;
    }
    .footer .box-copy .txt-copy {
        font-size: 12px;
        letter-spacing: 0;
        text-align: center;
    }

    .footer .totop {
        position: absolute;
        width: 51px;
        height: 51px;
        right: 10px;
        bottom: 73px;
    }
    .footer .totop a {
        display: block;
        font-family: 'Poppins', sans-serif;
        color: #218b22;
        font-weight: bold;
        font-size: 15px;
        text-align: center;
        border-radius: 50px;
        height: 100%;
        width: 100%;
        box-sizing: border-box;
        background: #ffffff url(../images/common/icon_totop.svg) center top 9px / 14px 11px no-repeat;
        padding-top: 18px;
        position: absolute;
    }
}
