@charset "UTF-8";


/*============================
	sub-lead-area
============================*/
.store-pagelinks {
    margin-top: 100px;
}

.store__link {
    display: block;
    width: 32%;
    height: 50px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: solid 1px #957935;
    text-align: center;
    position: relative;
    font-weight: 500;
    transition: .3s;

    & i {
        position: absolute;
        top: 50%;
        right: 5%;
        transform: translate(0, -50%);
        color: #957935;
    }

    &:hover {
        background: #957935;
        color: #fff;

        & i {
            color: #fff;
        }
    }
}

@media screen and (max-width:1024px) {
    .store-pagelinks {
        margin-top: 60px;
    }

    .store__link {
        width: 32%;
        height: 40px;
    }

}

@media screen and (max-width:767px) {
    .store-pagelinks {
        margin-top: 60px;
        display: flex;
        flex-wrap: wrap;
    }

    .store__link {
        width: 49%;
        font-size: 1.2rem;
        height: 40px;
        margin: 5px 0;
    }

}

/*============================
	commitment
============================*/
.comm__ttl {
    .font-en {
        margin-top: .5em;
    }
}

.comm__atc {
    margin-bottom: 30px;

    &:last-child {
        margin-bottom: 0;
    }
}

.comm__img {
    width: 47%;
}

.comm__txtwrap {
    width: 50%;
}

.comm__h3 {
    display: flex;
    align-items: center;

    & img {
        width: 85px;
        margin-right: .5em;
    }
}

@media screen and (max-width:1024px) {


    .comm__atc {
        margin-bottom: 30px;

    }

    .comm__img {
        width: 47%;
    }

    .comm__txtwrap {
        width: 50%;
    }

    .comm__h3 {
        & img {
            width: 50px;
            margin-right: .5em;
        }
    }
}

@media screen and (max-width:767px) {
    .comm__atc {
        margin-bottom: 40px;

    }

    .comm__img {
        width: fit-content;
        margin: 0 auto 20px;
    }

    .comm__txtwrap {
        width: 100%;
    }

    .comm__h3 {
        & img {
            width: 50px;
            margin-right: .5em;
        }
    }
}


/*============================
	menu
============================*/
.menu__ttl {
    .font-en {
        margin-top: .5em;
    }
}

.menu__atc {
    width: 48%;
    max-width: 560px;
    margin-bottom: 60px;
}

.menu__h3 {
    margin: .75em 0 .5em;
    text-align: center;
}

@media screen and (max-width:1024px) {

    .menu__atc {
        width: 48%;
        margin-bottom: 40px;
    }

    .menu__h3 {
        margin: .75em 0 .5em;
    }
}

@media screen and (max-width:767px) {
    .menu__atc {
        width: 100%;
        margin: 0 auto 40px;

        &:last-child {
            margin-bottom: 0;
        }
    }
}


/*============================
	voice
============================*/

.voice__ttl {
    .font-en {
        margin-top: .5em;
    }
}

.voice__atc {
    padding: 40px 5%;
    background: #f9f6ef;
    margin-bottom: 20px;

    &:last-child {
        margin-bottom: 0;
    }
}

.voice__h3 {
    width: fit-content;
    padding: 0 1em;
    background: #957935;
    color: #fff;
    margin-bottom: .5em;
}

@media screen and (max-width:1024px) {

    .voice__atc {
        padding: 30px 5%;
        margin-bottom: 15px;
    }
}

@media screen and (max-width:767px) {
    .voice__ttl {
        .txt {
            line-height: 1.4;
        }
    }

    .voice__atc {
        padding: 30px 5%;
        margin: 0 auto 15px;
    }
}

/*============================
	access
============================*/
.acc__ttl {
    .font-en {
        margin-top: .5em;
    }
}

.acc__ul {
    width: 48%;

    & li {
        padding: 1em;
        border-top: solid 1px #907b5b;
        display: flex;


        &:last-child {
            border-bottom: solid 1px #907b5b;
        }
    }
}

.acc__right {
    width: 48%;
}

.access iframe {
    display: block;
    width: 100%;
    height: 100%;

}

.acc__th {
    white-space: nowrap;
    width: 8em;
}

.acc__td {
    width: calc(100% - 8em);
}

.acc__btn {
    display: block;
    max-width: 200px;
    margin: 1em 0 0;
}

.acc__bnr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background: #060001;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        opacity: .1;
    }

    .img {
        width: 50%;
        display: block;
    }

    .acc__logo {
        width: 50%;

        & img {
            display: block;
            max-width: 248px;
            margin: 0 auto;
        }
    }
}

@media screen and (max-width:1024px) {

    .acc__ul {
        width: 48%;

        & li {
            padding: 1em 0;
        }
    }

    .acc__right {
        width: 48%;
    }

    .acc__th {
        width: 8em;
    }

    .acc__td {
        width: calc(100% - 8em);
    }

    .acc__btn {
        max-width: 160px;
        margin: 1em 0 0;
    }

    .acc__bnr {
        padding: 30px;

        &::before {
            width: calc(100% - 30px);
            height: calc(100% - 30px);
        }

        .img {
            width: 50%;
        }

        .acc__logo {
            width: 50%;

            & img {
                max-width: 200px;
                margin: 0 auto;
            }
        }
    }

}

@media screen and (max-width:767px) {
    .acc__ul {
        width: 100%;
        margin-bottom: 30px;

        & li {
            padding: 1em 0;
        }
    }

    .acc__right {
        width: 100%;

        & iframe {
            height: 200px;
        }
    }

    .acc__th {
        width: 6em;
    }

    .acc__td {
        width: calc(100% - 6em);
    }

    .acc__btn {
        max-width: 160px;
        margin: 1em 0 0;
    }

    .acc__bnr {
        padding: 20px;
        display: block;

        &::before {
            width: calc(100% - 20px);
            height: calc(100% - 20px);
        }

        .img {
            width: 100%;
        }

        .acc__logo {
            width: 100%;
            padding: 30px 0 20px;
            display: block;

            & img {
                max-width: 180px;
                margin: 0 auto;
            }
        }
    }

}