@charset "utf-8";


html {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
}

#wrapper {
    overflow: hidden;
    position: relative;
}

body.open {
    overflow: hidden;
}



.for-h1-txt {
    display: none;
}

#header.header {
    display: block;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.header-inner {
    max-width: 1300px;
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.h1-area {
    width: 100%;
    font-size: 14px;
    color: #fff;
}

.header-left {
    width: 20%;
    max-width: 300px;
}

.header-logo {
    width: 100%;
    display: block;
}

.header-logo-flex {
    width: 100%;
    display: flex;
    align-items: center;
}

.header-logo-flex>a:nth-child(1) {
    width: calc(100% / 3 * 2);
    display: block;
}

.header-logo-flex>a:nth-child(2) {
    width: calc(100% / 3 * 1);
    display: block;
}

.header-logo-flex>a>img {
    width: 100%;
    display: block;
}

.header-right {
    width: 80%;
    max-width: 800px;
}

.nav-area {
    max-width: 800px;
    margin-left: auto;
}




.header-nav {
    display: flex;
    align-items: center;
}

.header-nav .item {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}

.header-nav .item>a,
.header-nav .item>.a {
    text-align: center;
    display: block;
    width: 100%;
    padding: 25px 0;
    color: #fff;
    transition: .4s;
}

.header-nav .item>a:hover {
    color: #000;
    background-color: #fff;
    opacity: 1;
}










.dropdown {
    opacity: 0;
    background-color: #fff;
    position: absolute;
    top: 99%;
    left: 50%;
    transform: translate(-50%, 100px);
    transition: .4s;
    z-index: -99;
}

.minitem {
    width: 100%;
}

.minitem>a {
    display: block;
    width: 100%;
    white-space: nowrap;
    padding: 10px 10px 10px 15px;
    transition: .4s;
    position: relative;
}

.minitem>a::before {
    content: "";
    width: 5px;
    height: 100%;
    background-color: #8f0000;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: .4s;
    opacity: 0;
}

.parent:hover {
    overflow: visible;
}

.parent:hover .dropdown {
    opacity: 1;
    z-index: 2;
    transform: translate(-50%, 0px);
}

.minitem>a:hover {
    background-color: #000;
    color: #fff;
    opacity: 1;
}

.minitem>a:hover::before {
    opacity: 1;
}

.hmb {
    display: none;
    width: 50px;
    height: 50px;
    position: relative;
    background-color: #8f0000;
    border-radius: 5px;
    z-index: 100;
}

.hmb span {
    display: block;
    width: 40px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .4s;
}

.hmb::before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    transition: .4s;
}

.hmb::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    transition: .4s;
}

.open .hmb span {
    opacity: 0;
}

.open .hmb::before {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.open .hmb::after {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.tb-logo {
    width: 300px;
    margin: 0 auto 15px auto;
}

@media(Max-width:1024px) {
    .hmb {
        display: block;
    }

    .header-left {
        width: 300px;
        padding: 15px 0;
    }

    .header-right {
        width: 0;
    }

    .nav-area {
        position: fixed;
        top: 0;
        right: 0;
        width: 375px;
        height: 100vh;
        padding: 15px 0;
        transform: translateX(105%);
        background-color: #000;
        transition: .4s;
    }

    .open .nav-area {
        transform: translateX(0%);
    }

    .nav-area nav {
        overflow-y: scroll;
        height: 100%;
        padding-bottom: 300px;
    }

    .header-nav {
        display: block;
    }

    .header-nav .item>a,
    .header-nav .item>.a {
        text-align: left;
        display: block;
        width: 100%;
        padding: 15px;
        color: #fff;
        transition: .4s;
    }

    .header-nav .item>a::before {
        content: "";
        width: 5px;
        height: 100%;
        background-color: #8f0000;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        transition: .4s;
        opacity: 0;
    }

    .header-nav .item>a:hover::before {
        opacity: 1;
    }

    .dropdown,
    .parent:hover .dropdown {
        opacity: 1;
        z-index: 1;
        transform: translate(0, 0);
        position: relative;
        top: 0;
        left: 0;
        padding: 15px;
    }

    .h1-area {
        max-width: calc(100% - 60px);
        font-size: 12px;
        padding: 10px 0 10px 10px;
        line-height: 1.3em;
    }
}

@media(max-width:599px) {
    .header-left {
        width: 250px;
        padding: 10px 0;
    }
}


.top-mv-sec {
    width: 100%;
    height: 800px;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.mv-backimg,
.mv-backimg .uk-slidenav-position,
.mv-backimg .uk-slidenav-position .uk-slideshow,
.mv-backimg .uk-slidenav-position .uk-slideshow li,
.mv-backimg .uk-slidenav-position .uk-slideshow li div,
.mv-backimg .uk-slidenav-position .uk-slideshow li div img {
    width: 100%;
    height: 100%;
}

.mv-backimg .uk-slidenav-position .uk-slideshow li div img {
    object-fit: cover;
    object-position: center;
    opacity: 0.7;
}

.mv-txts {
    width: 100%;
    display: block;
    position: absolute;
    bottom: 30%;
    left: 0;
    z-index: 1;
}

.mv-txts-main {
    color: #fff;
    font-size: 38px;
}

.mv-txts-sub {
    font-size: 22px;
    color: #fff;
    margin-top: 1em;
}

@media(max-width:1024px) {
    .top-mv-sec {
        height: 500px;
    }

    .mv-txts {
        bottom: 25%;
    }

    .mv-txts-main {
        font-size: 36px;
    }

    .mv-txts-sub {
        font-size: 20px;
    }
}

@media(max-width:599px) {
    .top-mv-sec {
        height: 400px;
    }

    .mv-txts {
        bottom: 20%;
    }

    .mv-txts-main {
        font-size: 32px;
    }

    .mv-txts-sub {
        font-size: 18px;
    }
}

section {
    position: relative;
    z-index: 1;
}


.bg01 {
    background-image: url('/import/tenant_2/seishin2.a-bisu.jp/images/bg01.webp');
    background-size: cover;
    padding: 100px 0;
    z-index: 2;
}

.bg02 {
    background-image: url('/import/tenant_2/seishin2.a-bisu.jp/images/bg02.webp');
    background-size: cover;
    padding: 100px 0;
    z-index: 2;
}

.bg03 {
    background-image: url('/import/tenant_2/seishin2.a-bisu.jp/images/bg03.webp');
    background-size: cover;
    padding: 100px 0;
    z-index: 2;
}

.bg04 {
    background-color: #000;
    background-size: cover;
    padding: 100px 0;
}

.bg04>.bg04-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.bg04-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4
}

.bgb {
    background-color: #000;
    background-size: cover;
    padding: 100px 0;
}


.tr-title {
    margin-left: auto;
    writing-mode: vertical-rl;
    position: relative;
}

.tr-title .main-txt {
    font-size: 32px;
    position: relative;
    z-index: 2;
}

.tr-title::after {
    content: "";
    height: 100%;
    width: 250%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('/import/tenant_2/seishin2.a-bisu.jp/images/h3bg01.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
}

.flbox01>* {
    flex-grow: 1;
}

.g-btn a,
.g-btn button {
    display: inline-block;
    background: linear-gradient(45deg, #8d5e00 0%, #b99607 45%, #c2a950 70%, #b99607 85%, #8d5e00 90% 100%);
    padding: 10px 20px;
    border-radius: 5px;
    transition: .4s;
    color: #fff;
    border: none;
}

.g-btn.red a,
.g-btn.red button {
    background: #8f0000;
}

.g-btn>span {
    width: 100%;
    display: inline-block;
    background: linear-gradient(45deg, #8d5e00 0%, #b99607 45%, #c2a950 70%, #b99607 85%, #8d5e00 90% 100%);
    padding: 3px 0;
    border-radius: 5px;
    transition: .4s;
    color: #fff;
}

.g-btn.red>span {
    background: #8f0000;
}

.g-btn a span,
.g-btn button span {
    display: block;
    font-weight: bold;
    position: relative;
}

.g-btn i {
    padding-left: 1em;
}

.g-btn.back i {
    padding-left: 0;
    padding-right: 1em;
}

.g-btn a:hover {
    opacity: 1;
    background: linear-gradient(0deg, #8f0000 0%, #8f0000 100%);
}

.g-btn.red a:hover {
    opacity: 1;
    background: #fff;
}

.g-btn a:hover span {
    color: #fff;
}

.g-btn.red a:hover span {
    color: #8f0000;
}

.decoimg-box01 {
    width: 500px;
    margin-right: 15%;
    margin-left: auto;
    margin-bottom: -200px;
}

.decoimg01 {
    filter: drop-shadow(0 0 1em rgb(255, 255, 255))
}

@media(Max-width:1024px) {
    .tr-title .main-txt {
        font-size: 24px;
    }

    .decoimg-box01 {
        width: 400px;
        margin-top: 30px;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: -150px;
    }
}

@media(max-width:599px) {
    .flbox01>* {
        flex-grow: 0;
        width: 100%;
    }

    .tr-title {
        margin-left: 0;
        writing-mode: horizontal-tb;
    }

    .tr-title .main-txt {
        font-size: 22px;
    }

    .tr-title::after {
        content: "";
        height: 6em;
        width: 100%;
        display: block;
        position: absolute;
        top: -3em;
        left: 0%;
        transform: translate(0%, 0%);
        background-image: url('/import/tenant_2/seishin2.a-bisu.jp/images/h3bg01.webp');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left top;
        opacity: 0.5;
    }

    .decoimg-box01 {
        width: 70%;
        max-width: 300px;
        margin-bottom: -120px;
    }

    .g-btn.spm i {
        padding-left: .1em;
    }

    .g-btn.spm a {
        font-size: 14px;
        width: 98%;
    }
}

.nm-title .minit {
    font-size: 16px;
    color: #B67B03;
    display: block;
    line-height: 1.2em;
}

.nm-title .maint {
    font-size: 36px;
    display: block;
}


.cate-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cate-item:nth-child(1),
.cate-item:nth-child(2) {
    width: calc(50% - 10px);
    margin-bottom: 20px;
}

.cate-item {
    width: calc(100% / 3 - 15px);
}


.cate-item a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    filter: drop-shadow(0 0 1px rgb(255, 255, 255));
}

.cate-item:nth-child(1) .cate-txt-box,
.cate-item:nth-child(2) .cate-txt-box {
    width: 60%;
    position: relative;
    margin-left: auto;
    padding: 50px 10px 50px 10%;
    color: #fff;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 25%);
    text-align: left;
}

.cate-item .cate-txt-box {
    width: 100%;
    position: relative;
    margin-left: auto;
    padding: 50px 10px 50px 10px;
    color: #fff;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.cate-item:nth-child(1) a img,
.cate-item:nth-child(2) a img {
    width: 60%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.cate-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.cate-title {
    font-size: 20px;
}

.cate-caps {
    font-size: 14px;
    margin-top: 1.5em;
}

@media(max-width:1024px) {

    .cate-item:nth-child(1),
    .cate-item:nth-child(2) {
        width: 100%;
    }

    .cate-item {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }

    .nm-title .maint {
        font-size: 30px;
    }
}

@media(max-width:599px) {

    .cate-title {
        font-size: 18px;
    }

    .cate-caps {
        font-size: 14px;
        margin-top: 1em;
    }

    .nm-title .maint {
        font-size: 24px;
    }

    .cate-item:nth-child(1) .cate-txt-box,
    .cate-item:nth-child(2) .cate-txt-box {
        padding: 30px 8px 30px 20px;
    }

    .cate-item .cate-txt-box {
        padding: 20px 5px 20px 5px;
    }

    .cate-item:nth-child(1),
    .cate-item:nth-child(2) {
        margin-bottom: 10px;
    }

    .cate-item {
        width:100%;
        margin-bottom: 10px;
    }
}


.tr-title-c {
    text-align: center;
    position: relative;
}

.tr-title-c::after {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('/import/tenant_2/seishin2.a-bisu.jp/images/h3bg02.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.tr-title-c .maint {
    font-size: 36px;
    writing-mode: vertical-rl;
    letter-spacing: .5em;
}

.newone-item a {
    display: block;
}


.newone-item .img {
    border-radius: 5px;
    overflow: hidden;
    filter: drop-shadow(0 0 5px rgb(90, 90, 90));
}

.allview a {
    display: inline-block;
    border-bottom: 1px solid #000;
}

.allview.up-c-white a {
    display: inline-block;
    border-bottom: 1px solid #fff;
}

.allview a span {
    display: inline-block;
    margin-left: 10px;
}

.allview.back a span {
    display: inline-block;
    margin-left: 0;
    margin-right: 10px;
}

.deco-beef {
    position: absolute;
    bottom: -10px;
    left: 5%;
    width: 200px;
}

@media(max-width:1024px) {
    .tr-title-c .maint {
        font-size: 30px;
    }
}


@media(max-width:599px) {
    .tr-title-c .maint {
        font-size: 24px;
        letter-spacing: normal;
        writing-mode: horizontal-tb;
    }

    .tr-title-c::after {
        height: 100px;
    }
}

.vr-txt {
    writing-mode: vertical-rl;
}

.dish {
    position: absolute;
    bottom: 8%;
    right: 60%;
    width: 50%;
}

@media(max-width:1024px) {
    .dish {
        bottom: 3%;
        right: 55%;
        width: 50%;
        min-width: 300px;
    }
}

@media(max-width:599px) {
    .dish {
        bottom: 3%;
        right: auto;
        left: 35%;
        width: 50%;
        min-width: 300px;
    }

    .vr-txt {
        writing-mode: horizontal-tb;
    }
}

.arrows {
    display: flex;
}

.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    border: 2px solid #ccc;
    border-radius: 5px;
    margin-right: 5px;
    position: relative;
}

.swiper-button-prev i,
.swiper-button-next i {
    content: "〈";
    color: #aaa;
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.up-ovf-hidden {
    overflow: hidden;
}

.swiper.left-hidden {
    overflow: visible;
}

.img-swipe {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.img-swipe .swiper-wrapper,
.img-swipe .swiper-slide {
    width: 100%;
    height: 100%;
}

.img-swipe .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width:1024px) {
    .img-swipe {
        height: 300px;
    }
}

@media(max-width:599px) {
    .img-swipe {
        height: 200px;
    }
}

.voice-cover {
    width: calc(100% - 60px);
    padding-right: 40px;
}

.rank-cover {
    width: calc(100% - 60px);
    padding-left: 40px;
}

.voice-item a {
    display: block;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    filter: drop-shadow(0 0 5px rgb(90, 90, 90));
}

.voice-txt-box {
    padding: 15px;
}

.up-reader5 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5
}

.voice-caps {
    border-top: #ccc 1px solid;
}

.master4>*:nth-child(4) {
    display: none;
}

@media(max-width:1024px) {
    .master4>*:nth-child(4) {
        display: block;
    }

}

@media(max-width:599px) {
    .voice-cover {
        width: 100%;
        padding-right: 0;
    }

    .rank-cover {
        width: 100%;
        padding-left: 0;
    }

    .voice-txt-box {
        padding: 8px;
    }
}

.ranking-item>a {
    display: block;
    border-bottom: 1px solid #fff;
    padding-top: .8em;
    padding-bottom: .8em;
    margin-top: .8em;
    padding-left: 2.5em;
    position: relative;
}

.ranking-item>a::before {
    content: "";
    display: block;
    width: 2em;
    height: 2em;
    background-image: url('/import/tenant_2/seishin2.a-bisu.jp/images/medal.webp');
    background-size: contain;
    position: absolute;
    top: 0.7em;
    left: 0;
}

.ranking-item>a:hover {
    color: #8f0000;
    opacity: 1;
    border-bottom: 1px solid #8f0000;
}




.nb-flex {
    display: flex;
    justify-content: space-between;
}

.nb-news {
    width: 33%;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 5px;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
}

.nb-news-item {
    display: block;
    border-bottom: 1px solid #999;
}

.nb-news-item+.nb-news-item {
    margin-top: 20px;
}

.nb-news-item>a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 15px;
    padding-right: 15px;
    position: relative;
}


.nb-news-tit {
    width: 100%;
}

.nb-news-item .date {
    color: #999;
    margin-right: 20px;
}

.nb-news-item .newest {
    display: none;
    color: #8f0000;
    padding: 0px 10px;
    line-height: 1.2em;
    border-radius: 5px;
    border: 1px solid #8f0000;
}

.nb-news-item:first-child .newest {
    display: block;
}



.nb-blog {
    width: 65%;
}

.nb-blog-item>a {
    border-radius: 5px;
    overflow: hidden;
    display: block;
    background-color: #fff;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
}

.txt-blk {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.nb-blog-item .date {
    color: #999;
    margin-right: 20px;
}

.nb-blog-item .newest {
    display: none;
    color: #8f0000;
    padding: 0px 10px;
    line-height: 1.2em;
    border-radius: 5px;
    border: 1px solid #8f0000;
}

.nb-blog-item:first-child .newest {
    display: block;
}

.nb-blog-tit {
    margin-top: 10px;
    width: 100%;
}

@media(max-width:1024px) {
    .nb-flex {
        flex-direction: column;
    }

    .nb-news {
        width: 100%;
    }

    .nb-news-tit {
        margin-top: 0px;
        width: calc(100% - 120px)
    }

    .nb-news-item .date {
        color: #999;
        margin-right: 0;
        padding-right: 20px;
        width: 120px;
    }

    .nb-news-item .newest {
        position: absolute;
        bottom: 100%;
        left: 0;
        font-size: 12px;
    }

    .nb-news-item>a::after {
        top: -5px;
        transform: translateY(0%);
    }

    .nb-blog {
        width: 100%;
        margin-top: 30px;
    }

    .nb-blog-item .date {
        margin-right: 15px;
    }

    .nb-blog-item .newest {
        font-size: 12px;
    }

    .lastnone2>*:nth-child(4) {
        display: block;
    }
}

@media(max-width:599px) {
    .lastnone>*:nth-child(4) {
        display: block;
    }

    .nb-news {
        padding: 30px 10px 20px 10px;
    }

    .txt-blk {
        padding: 10px 8px;
    }

    .nb-blog-tit {
        margin-top: 5px;
    }

}

#footer {
    position: relative;
    z-index: 5;
}


.footer-btns {
    position: relative;
    z-index: 2;
}

.btnlist {
    width: 60px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.btnlist * {
    transition: .0s;
}

.ftb {
    width: 100%;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
}

.ftb+.ftb {
    margin-top: 10px;
}

.ftb a {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}


.ftb .r,
.ftb .l,
.ftb .o {
    writing-mode: vertical-rl;
    color: #fff;
    letter-spacing: .1em;
}

.ftb .r {
    font-size: 18px;
    margin-left: -5px;
}

.ftb .o {
    font-size: 20px;
}

.ftb .l {
    font-size: 14px;

}

.ftb .c {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1em;
    width: 40px;
    height: 40px;
    background-color: #fff;
    font-size: 22px;
    border-radius: 50%;

}

.ftb.ftb01 a {
    background-color: rgba(141, 0, 0, 0.6);
}

.ftb.ftb01 .c {
    color: #8f0000;
    margin: 0;
}

.ftb.ftb02 a {
    background-color: rgba(0, 107, 0, 0.6);
}

.ftb.ftb02 .c {
    color: #006b00;
    padding-top: 0px;
    padding-right: 0px;
}

.ftb.ftb03 a {
    background-color: rgba(141, 141, 0, 0.6);
}

.ftb.ftb03 .c {
    color: #8f8f00;
    padding-top: 0px;
    padding-right: 0px;
}

.ftr-nav-item a {
    position: relative;
    padding-left: 1.5em;
    display: block;
}

.ftr-nav-item a::before {
    content: "┗";
    font-size: 12px;
    position: absolute;
    display: block;
    left: 0;
    top: 2px;
}



.scrolled .btnlist {
    width: 450px;
    top: auto;
    bottom: 0;
    right: 0;
    display: flex;
    height: 60px;
    transform: translateY(0)
}

.scrolled .ftb {
    width: auto;
    flex-grow: 1;
    border-radius: 10px 10px 0 0px;
}

.scrolled .ftb+.ftb {
    margin-top: 0px;
}

.scrolled .ftb a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 60px 0 20px;
    position: relative;
}

.scrolled .ftb.ftb01 {
    width: 60px;
    flex-grow: 0;
}

.scrolled .ftb.ftb01 a {
    padding: 0;
    width: 100%;
}

.scrolled .ftb .r,
.scrolled .ftb .l,
.scrolled .ftb .o {
    display: block;
    text-align: left;
    width: 100%;
    writing-mode: horizontal-tb;
    color: #fff;
    letter-spacing: 0em;
}

.scrolled .ftb .r {
    font-size: 16px;
    margin-left: 0px;
}

.scrolled .ftb .o {
    font-size: 16px;
}

.scrolled .ftb .l {
    font-size: 12px;
}

.scrolled .ftb.tel .l {
    font-size: 16px;
}

.scrolled .ftb .c {
    margin-top: 0px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

@media(max-width:1024px) {
    .btnlist {
        width: 450px;
        top: auto;
        bottom: 0;
        right: 0;
        display: flex;
        height: 60px;
        transform: translateY(0)
    }

    .ftb {
        width: auto;
        flex-grow: 1;
        border-radius: 10px 10px 0 0px;
    }

    .ftb+.ftb {
        margin-top: 0px;
    }

    .ftb a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 0 60px 0 20px;
        position: relative;
    }

    .ftb.ftb01 {
        width: 60px;
        flex-grow: 0;
    }

    .ftb.ftb01 a {
        padding: 0;
        width: 100%;
    }

    .ftb .r,
    .ftb .l,
    .ftb .o {
        display: block;
        text-align: left;
        width: 100%;
        writing-mode: horizontal-tb;
        color: #fff;
        letter-spacing: 0em;
    }

    .ftb .r {
        font-size: 16px;
        margin-left: 0px;
    }

    .ftb .o {
        font-size: 16px;
    }

    .ftb .l {
        font-size: 12px;
    }

    .ftb.tel .l {
        font-size: 16px;
    }

    .ftb .c {
        margin-top: 0px;
        position: absolute;
        right: 10px;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
    }

    .ftb.ftb01 .c {
        right: 50%;
        left: auto;
        top: 50%;
        transform: translate(50%, -50%);
    }
}

@media(max-width:599px) {
    .btnlist {
        width: 100%;
        height: 45px;
    }

    .ftb a {
        padding: 5px 0 5px 50px;
    }

    .ftb .r,
    .ftb .o {
        font-size: 14px;
        text-align: left;
    }

    .ftb .l {
        display: none;
    }

    .ftb .c {
        width: 30px;
        height: 30px;
        font-size: 18px;
        right: auto;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .ftr-nav-item a {
        padding-left: 1em;
    }

    .ftr-nav {
        letter-spacing: -.1em;
    }

}

.b-type a {
    position: relative;
    overflow: hidden;
}

.b-type a::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 40px;
    height: 100%;
    transform: scale(2) rotate(20deg);
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
    animation-name: shiny;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.scrolled .b-type a::after {
    animation-name: shiny2;
    animation-duration: 4s;
    width: 90px;
}



@keyframes shiny {
    0% {
        left: -200%;
    }

    10% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

@keyframes shiny2 {
    0% {
        left: -100%;
    }

    10% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.ftr-col {
    padding-bottom: 30px;
    border-bottom: 1px solid #fff;
}

.footer-logo {
    width: 250px;
    margin-bottom: 30px;
}

.ftr-btn {
    width: 250px;
}

.ftr-btn+.ftr-btn {
    margin-top: 15px;
}

.ftr-btn>a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5px 20px;
    color: #fff;
    border-radius: 20px;
}

.ftr-btn.site>a {
    background-color: #8f8f00;
}

.ftr-btn.site>a i {
    padding-top: 3px;
    padding-right: 2px;
    color: #8f8f00;
}

.ftr-btn.cont>a {
    background-color: #8f0000;
}

.ftr-btn.cont>a i {
    color: #8f0000;
}

.ftr-btn.goldcart>a {
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 1.2em;
    background: linear-gradient(45deg, #8d5e00 0%, #b99607 45%, #c2a950 70%, #b99607 85%, #8d5e00 90% 100%);
    position: relative;
    overflow: hidden;
}

.ftr-btn.cont.goldcart>a i {
    color: #c2a950;
}

.ftr-btn.goldcart>a::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 90px;
    height: 100%;
    transform: scale(2) rotate(20deg);
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
    animation-name: shiny2;
    animation-duration: 4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.ftr-btn .c {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1em;
    width: 30px;
    height: 30px;
    background-color: #fff;
    font-size: 18px;
    border-radius: 50%;
    margin-right: 10px;
}

.mapbox {
    position: relative;
}

.mapbox::after {
    content: "";
    width: 100%;
    padding-top: 50%;
    display: block;
}

.mapbox.mk2::after {
    padding-top: 129%;
}

.mapbox iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.wf img {
    filter: invert(100%);
}

@media(max-width:1024px) {
    .ftr-left {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}









/*breadcrumbs*/

.breadcrumbs {
    padding: 10px 10px;
    background-color: #111;
}

.breadcrumbs li {
    color: #fff;
    display: inline;
    font-size: 14px;
    font-weight: bold;
}

.breadcrumbs li a {
    color: #999;
}

.breadcrumbs ol li:after {
    content: "\f054";
    font-family: FontAwesome;
    font-size: 12px;
    vertical-align: bottom;
    margin: 0 20px;
}

.breadcrumbs ol li:last-of-type:after {
    display: none;
}


.pagenav li {
    text-align: center;
}

.pagenav li.pagebtn {
    margin: 0 25px;
}

.pagenav li.prev {
    margin-right: 25px;
}

.pagenav li.next {
    margin-left: 25px;
}

.pagenav li>* {
    display: block;
    font-size: 24px;
    color: #fff;
}

.pagenav li>.now {
    color: #999;
}

.pagenav li.prev>*,
.pagenav li.next>* {
    width: 30px;
    height: 30px;
    font-size: 14px;
    color: #000;
    background-color: #c2a950;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

@media (max-width:1024px) {

    .pagenav li.pagebtn {
        margin: 0 20px;
    }

    .pagenav li.prev {
        margin-right: 20px;
    }

    .pagenav li.next {
        margin-left: 20px;
    }

    .pagenav li>* {
        font-size: 20px;
    }
}

@media (max-width:599px) {
    .pagenav li.pagebtn {
        margin: 0 10px;
    }

    .pagenav li.prev {
        margin-right: 10px;
    }

    .pagenav li.next {
        margin-left: 10px;
    }

    .pagenav li>* {
        font-size: 18px;
    }
    
    .mapbox{
      height:300px;
    }
}







.under-mv-sec {
    height: 500px;
    background-color: #000;
    overflow: hidden;
}

.under-mv-sec img {
    opacity: 0.5;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mv-backimg {
    width: 100%;
    height: 100%;
}

.redline::after {
    content: "";
    width: 200px;
    display: block;
    height: 3px;
    background-color: #c2a950;
}

.indents {
    padding-left: 1em;
    position: relative;
    font-size: 14px;
}

.indents::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #8f0000;
    border-radius: 50%;
    position: absolute;
    top: .35em;
    left: .2em;
}

.info-list li {
    display: flex;
    border-bottom: 1px solid #8f0000;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.info-list li+li {
    margin-top: 15px;
}

.info-title {
    width: 120px;
    font-weight: bold;
    color: #8f0000;
    letter-spacing: -.05em;
}

.info-data {
    width: calc(100% - 120px);
}

.wholeimg {
    border-radius: 5px;
    border: 3px solid #fff;
    filter: drop-shadow(0 0 5px rgb(90, 90, 90));
}

.decow02 {
    width: 300px;
    position: absolute;
    right: -50px;
    bottom: 0;
    opacity: 0.5;
}

.udb {
    border-bottom: 2px solid #c2a950;
}

.bdr-img {
    border-radius: 5px;
    overflow: hidden;
}

@media(max-width:1024px) {
    .decow02 {
        opacity: 0.3;
        width: 200px;
    }

    .under-mv-sec {
        height: 400px;
    }
}

.dish02 {
    width: 800px;
    position: absolute;
    bottom: -50px;
    left: -90px;
}

.dish02 img {
    opacity: 1;
}

@media(max-width:1024px) {
    .dish02 img {
        opacity: 0.5;
    }

    .under-mv-sec {
        height: 340px;
    }
}

.mg-box {
    background-image: url('/import/tenant_2/seishin2.a-bisu.jp/images/paper.webp');
    background-size: cover;
    padding: 30px 30px;
    border-radius: 5px;
    filter: drop-shadow(0 0 5px rgb(90, 90, 90));
}

.mg-box-inner {
    border: 2px solid #c2a950;
    padding: 30px;
}

.mg-title {
    font-size: 28px;
    font-weight: bold;
    position: relative;
}

@media(max-width:1024px) {
    .mg-box {
        padding: 20px 20px;
        border-radius: 3px;
    }

    .mg-box-inner {
        padding: 30px 15px;
    }

    .mg-title {
        font-size: 24px;
    }
}

.inner+.inner {
    margin-top: 120px;
}

@media(max-width:1024px) {
    .mg-box {
        padding: 10px 10px;
        border-radius: 3px;
    }

    .mg-box-inner {
        padding: 30px 10px;
    }

    .mg-title {
        font-size: 20px;
    }

    .inner+.inner {
        margin-top: 100px;
    }
}

.wp-v>li {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    filter: drop-shadow(0 0 5px rgb(90, 90, 90));
}

.wp-v.premium>li {
    background-color: #303030;
    border: 2px solid #c2a950;
}

.r-card-inner {
    padding: 20px;
    background-color: #303030;
    border-radius: 5px;
}

.white-ver .r-card-inner {
    background-color: #fff;
    filter: drop-shadow(0 0 5px rgb(90, 90, 90));
}

.rank-list li {
    display: flex;
}

.rank-list.mk2 li {
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.rank-list li+li {
    margin-top: 5px;
}

.rank-list.mk2 li+li {
    margin-top: 10px;
}

.rank-list li span {
    flex-grow: 1;
}

.rank-list li .rank-tt {
    font-weight: bold;
    color: #c2a950;
    background-color: #000;
    width: 5em;
    flex-grow: 0;
    padding: 2px 0;
    text-align: center;
    margin-right: 10px;
    border: 1px solid #b99607
}

.rank-list.mk2 li .rank-tt {
    width: 7em;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.ranking-table th,
.ranking-table td {
    border: 1px solid #ccc;
    padding: 15px;
    text-align: left;
}

.ranking-table tbody td:first-child {
    text-align: center;
    color: #c2a950;
    font-size: 20px;
    font-weight: bold;
    background-color: #303030;
}

.ranking-table th {
    background-color: #303030;
    font-weight: bold;
}

.ranking-table tr:nth-child(even) {
    background-color: #606060;
}

.ranking-table tr:nth-child(odd) {
    background-color: #808080;
}

.cus-flex {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.cus-list {
    width: 73%;
}

.cus-menu {
    width: 25%;
}

@media(max-width:1024px) {
    .cus-flex {
        flex-direction: column;
    }

    .cus-list {
        width: 100%;
    }

    .cus-menu {
        width: 100%;
        margin-top: 90px;
    }

    .r-card-inner {
        padding: 15px;
    }

    .wp-v>li {
        padding: 25px 20px;
    }
}

.cusnav-item+.cusnav-item {
    margin-top: 20px;
}

.cusnav-item a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    filter: drop-shadow(0 0 1px rgb(255, 255, 255));
}


.cusnav-item .cate-txt-box {
    width: 100%;
    position: relative;
    margin-left: auto;
    padding: 30px 10px 30px 10px;
    color: #fff;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}


.cusnav-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.cate-title {
    font-size: 20px;
}

.cate-caps {
    font-size: 14px;
    margin-top: .5em;
}


@media(max-width:599px) {

    .cate-title {
        font-size: 18px;
    }

    .cate-caps {
        font-size: 14px;
        margin-top: 1em;
        letter-spacing:-.05em;
    }

    .cusnav-item .cate-txt-box {
        padding: 30px 8px 30px 8px;
    }

    .cusnav-item {
        width: calc(50% - 5px);
        margin-bottom: 10px;
    }

    .r-card-inner {
        padding: 15px 10px;
    }

    .wp-v>li {
        padding: 15px 10px;
    }
}

.cus-price-item+.cus-price-item {
    margin-top: 10px;
}


.cus-price-item a {
    display: block;
    color: #c2a950;
    background-color: #000;
    padding: 5px 10px;
    border: 1px solid #c2a950;
}

.true-cate-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.true-cate-list li {
    width: 30%;
    margin-bottom: 15px;
}

.true-cate-list li a {
    background-image: url('/import/tenant_2/seishin2.a-bisu.jp/images/paper.webp');
    width: 100%;
    display: block;
    padding: 6px 0 6px 10px;
    font-weight: bold;
    border: 2px solid #c2a950;
    border-left: #8f0000 5px solid;
}

@media(max-width:1024px) {
    .cusnav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .cusnav-item {
        width: 48%;
        margin-bottom: 30px;
    }

    .cusnav-item+.cusnav-item {
        margin-top: 0px;
    }

    .cus-price-item {
        width: 48%;
        margin-bottom: 10px;
    }

    .cus-price-item+.cus-price-item {
        margin-top: 0px;
    }

    .true-cate-list li {
        width: 32%;
        margin-bottom: 10px;
    }
}

@media(max-width:599px) {
    .cusnav-item {
        width: 100%;
        margin-bottom: 10px;
    }

    .cus-price-item {
        width: 49%;
    }

    .true-cate-list li {
        width: 49%;
    }
}

.blk-list {
    background-color: #303030;
    border: 1px solid #c2a950;
}

.info-list.blk-list li {
    border-bottom: 1px solid #c2a950;
    padding: 0;
}

.info-list.blk-list li:last-child {
    border-bottom: none;
}

.info-list.blk-list li+li {
    margin-top: 0px;
}

.blk-list .info-title {
    width: 100px;
    color: #c2a950;
    padding: 10px;
    border-right: 1px solid #c2a950;
}

.blk-list .info-data {
    color: #fff;
    padding: 10px;
}

.udb2 {
    display: inline-block;
    letter-spacing: .1em;
    background: linear-gradient(transparent 60%, #8f0000 60%);
}

.rec-pro-list>li+li {
    margin-top: 40px;
}

.tabe {
    width: calc(100% - 150px);
}

.tabe>span {
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid #8f0000;
    font-size: 14px;
    margin: 2px;
    font-weight: bold;
}

@media(max-width:599px) {
    .rec-pro-list>li+li {
        margin-top: 30px;
    }

    .tabe {
        width: 100%;
    }
}



.meat-cap>*+* {
    margin-top: 15px;
}

.datebox {
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid #c2a950;
    font-size: 14px;
    margin: 2px;
    font-weight: bold;
    background-color: #fff;
}

.fl-cat {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
}

.fl-cat.type-r {
    position: relative;
    top: 0;
    left: 0;
}

.fl-cat>span {
    display: inline-block;
    font-size: 12px;
    padding: 1px 8px;
    background-color: #8f0000;
    color: #fff;
    margin: 1px;
    border-radius: 2px;
    font-weight: bold;
}

.fl-cat>.js-split-tag {
    display: contents;
}

.fl-cat>.js-split-tag>span {
    display: inline-block;
    font-size: 12px;
    padding: 1px 8px;
    background-color: #fff;
    color: #8f0000;
    margin: 1px;
    border-radius: 2px;
    font-weight: bold;
}

.nb-blog-item .newest,
.nb-news-item .newest {
    display: none;
}

.nb-blog-item:first-child .newest,
.nb-news-item:first-child .newest {
    display: block;
}

.date-detail {
    min-width: 90px;
}


.fl-cat.type-r>.js-split-tag>span,
.fl-cat.type-r>span {
    font-size: 14px;
    margin: 1px;
}

.html-area {
    background-color: #fff;
    padding: 30px;
}

.html-area.v2 {
    background-color: transparent;
    padding: 0px;
}


.html-area h2 {
    font-size: 20px;
    background-color: #c2a950;
    padding: 2px 10px;
    font-weight: bold;
    margin-bottom: 1em
}

.html-area *+h2 {
    margin-top: 2em;
}

.html-area h3 {
    font-size: 18px;
    padding: 2px 0;
    font-weight: bold;
    color: #8f0000;
    border-bottom: 2px solid #8f0000;
    margin: 1em 0;
}

.html-area *+h3 {
    margin-top: 2em;
}

.html-area h4 {
    font-size: 16px;
    padding: 2px 0 2px .5em;
    font-weight: bold;
    border-left: 5px solid #8f0000;
    margin: 1em 0;
}

.html-area *+h4 {
    margin-top: 2em;
}

.html-area ul {
    margin: 1em 0
}

.html-area ul>li {
    padding-left: 1.5em;
    position: relative;
    font-weight: bold;
}

.html-area ul>li::before {
    content: '';
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 100%;
    background-color: #c2a950;
    position: absolute;
    top: .25em;
    left: 0;
}

.html-area ul>li+li {
    margin-top: .5em
}

.html-area ol {
    margin: 1em 0;
    counter-reset: number;
    list-style: none;
}

.html-area ol li {
    padding-left: 1.5em;
    position: relative;
    font-weight: bold;
}

.html-area ol li::before {
    counter-increment: number;
    content: counter(number) '.';
    color: #8f0000;
    font-size: 120%;
    line-height: 1;
    position: absolute;
    top: 10%;
    font-weight: bold;
    left: 0;
}

.html-area ol li+li {
    margin-top: .5em
}

.html-area iframe {
    max-width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    margin: 1em 0
}

@media(max-width:1024px) {
    .html-area {
        padding: 25px 15px;
    }

    .html-area h2 {
        font-size: 18px;
    }

    .html-area h3 {
        font-size: 16px;
    }
}

@media(max-width:599px) {
    .html-area {
        padding: 20px 10px;
    }
}


.faq-list .box+.box {
    margin-top: 40px;
}

.faq-list .box>* {
    padding: 25px 100px;
    position: relative;
    background-color: #fff;
}

.faq-list .box>*+* {
    padding-top: 25px;
    display: none;
}

.faq-list .box>*+*:before {
    content: "";
    width: calc(100% - 80px);
    display: block;
    margin: auto;
    border-top: 1px solid #c2a950;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.faq-list .box .mark {
    width: 40px;
    height: 40px;
    font-size: 26px;
    line-height: 30px;
    text-align: center;
    border-radius: 5px;
    position: absolute;
    top: 18px;
    left: 40px;
    color: #fff;
    background-color: #8f0000;
}

.faq-list .box .is-active .mark {
    background: linear-gradient(45deg, #8d5e00 0%, #b99607 45%, #c2a950 70%, #b99607 85%, #8d5e00 90% 100%);
}

.faq-list .box>*+* .mark {
    line-height: 38px;
    border: none;
    top: 20px;
}

.faq-list .box .arrow {
    border-bottom: 15px solid transparent;
    border-top: 15px solid#8f0000;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transform-origin: top;
    transform-origin: top;
    position: absolute;
    top: 28px;
    right: 60px;
}

.faq-list .box .is-parent .arrow {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    top: 46px;
}

.faq-list .box .txt {
    font-size: 16px;
}

@media (max-width: 1024px) {
    .faq-list .box>* {
        padding: 25px 80px;
    }

    .faq-list .box>*+*:before {
        width: calc(100% - 40px);
    }

    .faq-list .box .mark {
        left: 20px;
    }

    .faq-list .box .arrow {
        right: 20px;
    }

    .faq-list .box+.box {
        margin-top: 30px;
    }
}

@media (max-width: 599px) {
    .faq-list .box>* {
        padding: 20px 50px;
    }

    .faq-list .box>*+* {
        padding-top: 20px;
    }

    .faq-list .box>*+*:before {
        width: calc(100% - 23px);
    }

    .faq-list .box .txt {
        font-size: 16px;
    }

    .faq-list .box .mark {
        width: 30px;
        height: 30px;
        font-size: 20px;
        line-height: 24px;
        border: 2px solid;
        left: 10px;
    }

    .faq-list .box>*+* .mark {
        top: 17px;
    }

    .faq-list .box .arrow {
        border-top: 10px solid #8f0000;
        border-bottom: 10px solid transparent;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        top: 28px;
        right: 10px;
    }

    .faq-list .box .is-parent .arrow {
        top: 40px;
    }

    .faq-list .box+.box {
        margin-top: 20px;
    }
}


.ver3 .info-title {
    width: 250px;
    font-weight: bold;
    color: #8f0000;
    letter-spacing: -.05em;
}

.ver3 .info-data {
    width: calc(100% - 250px);
}

@media(max-width:599px) {
    .ver3 .info-title {
        width: 100%;
    }

    .ver3 .info-data {
        width: 100%;
    }

}

.cmn-contact-02 .box {
    padding: 20px;
    border-radius: 10px;
}

.cmn-contact-02 .box .holiday dd {
    border-left: 1px solid;
}

.cmn-contact-02 .box .telbox {
    padding-left: 50px;
    position: relative;
}

.cmn-contact-02 .box .telbox .c-tel.big {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 25px;
    left: 0;
}

@media (max-width: 599px) {
    .cmn-contact-02 .box .telbox {
        padding-left: 40px;
    }

    .cmn-contact-02 .box .telbox .c-tel.big {
        width: 34px;
        height: 34px;
    }
}

.maxtel {
    font-size: 60px;
}

.line-btn a {
    width: 100%;
    height: 100%;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 10px;
    background-color: #06c755;
    color: #fff;
    position: relative;
    border-radius: 5px;
}

.line-pare {
    display: inline-block;
    position: relative;
    padding-left: 50px;
}

.line-pare::before {
    content: "";
    width: 45px;
    height: 45px;
    background-image: url('/import/tenant_2/seishin2.a-bisu.jp/images/line.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
}

.form input,
.form textarea {
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid #333;
    width: 100%;
    max-width: 400px;
}

.form input.p-postal-code {
    max-width: 250px;
}

.form input.p-region {
    max-width: 100%;
}

.form textarea {
    height: 300px;
    max-width: 100%;
}

.form .label {
    display: inline-block;
    padding: 0px 10px;
    font-size: 12px;
    border-radius: 30px;
    background-color: #8f0000;
    color: #fff;
}

.form dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #c2a950;
}

.form dl+dl {
    margin-top: 20px;
}

.form dt {
    width: 30%;
    padding-right: 20px;
    font-size: 18px;
    font-weight: bold;
}

.form dd {
    width: 70%;
}

.h-adr .onk {
    padding-left: 25px;
    position: relative;
}

.onk>.onk-t {
    position: absolute;
    font-size: 24px;
    top: 3px;
    left: 0;
}


@media (max-width: 599px) {
    .form textarea {
        height: 200px;
    }

    .form dt {
        width: 100%;
        padding-right: 0px;
        font-size: 14px;
        display: flex;
        margin-bottom: 5px;
    }

    .form .label {
        margin-left: 5px;
    }

    .form dd {
        width: 100%;
        font-size: 14px;
    }

    .form dd.radiobtn input+label {
        margin-left: 0px;
    }

    .form dd.radiobtn label::before {
        top: 0;
    }
    
    .maxtel{
      font-size:40px;
    }
}

.form .checkboxer label {
    display: inline-block;
    margin: 0.5em 0;
    padding: 0 10px 0 24px;
    position: relative;
    margin-right: 15px;
    font-weight: bold;
}

.form .checkboxer label::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border: 2px solid #dcdcdc;
    border-radius: 3px;
    background-color: white;
    position: absolute;
    top: 3px;
    left: 0;
    box-shadow: none;

}

.form .checkboxer label:hover {
    text-decoration: underline;
    cursor: pointer;
}

.form .checkboxer input {
    display: none;
}

.form .checkboxer input:checked+label {
    text-decoration: underline;
}

.form .checkboxer input:checked+label::after {
    content: "\f00c";
    width: 0;
    height: 0;
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    color: red;
    line-height: 1;
    background-color: transparent;
    position: absolute;
    top: 4px;
    left: 2px;
}

.redone {
    color: red;
    font-weight: bold;
}

[data-element-id].h1-area{
  display:none!important;
}

[data-element-id].for-h1-txt{
  display:block;
  padding:30px 0;
  width:100%;
}

[data-element-id]#header.header{
  position:relative;
}

[data-element-id].header-nav{
  flex-wrap:wrap;
  align-items: flex-start;
}

[data-element-id].dropdown,
[data-element-id].parent:hover .dropdown{
    opacity: 1;
    background-color: #fff;
    position: relative;
    top:0;
    left: 0;
    transform: translate(0, 0);
    transition: .4s;
    z-index: 1;
}

[data-element-id].header-nav .item{
  border:1px solid #ccc;
}

[data-element-id].btnlist{
  position:relative;
}

[data-element-id].btnlist {
    width: 450px;
    top: auto;
    bottom: 0;
    right: 0;
    display: flex;
    height: 60px;
    transform: translateY(0)
}

[data-element-id].ftb {
    width: auto;
    flex-grow: 1;
    border-radius: 10px 10px 0 0px;
}

[data-element-id].ftb+.ftb {
    margin-top: 0px;
}

[data-element-id].ftb a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 60px 0 20px;
    position: relative;
}

[data-element-id].ftb.ftb01 {
    width: 60px;
    flex-grow: 0;
}

[data-element-id].ftb.ftb01 a {
    padding: 0;
    width: 100%;
}

[data-element-id].ftb .r,
[data-element-id].ftb .l,
[data-element-id].ftb .o {
    display: block;
    text-align: left;
    width: 100%;
    writing-mode: horizontal-tb;
    color: #fff;
    letter-spacing: 0em;
}

[data-element-id].ftb .r {
    font-size: 16px;
    margin-left: 0px;
}

[data-element-id].ftb .o {
    font-size: 16px;
}

[data-element-id].ftb .l {
    font-size: 12px;
}

[data-element-id].ftb.tel .l {
    font-size: 16px;
}

[data-element-id].ftb .c {
    margin-top: 0px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

[data-element-id].header-nav .sns-icon{
  min-width:50px;
  margin:10px;
}

table#quality{
  background-color: #303030;
    border: 1px solid #c2a950;
    border-collapse: collapse;
}

table#quality tr{
  border: 1px solid #c2a950;
}

table#quality th{
  width: 100px;
    color: #c2a950;
    padding: 10px;
    border: 1px solid #c2a950;
}

table#quality td {
    color: #fff;
    padding: 10px;
    border: 1px solid #c2a950;
}

.cart-on .cartjs_product_img{
display:none;
}

.cart-on .cartjs_sales_price{
  display:none;
}

.cart-on .cartjs_product_num{
  color:#fff;
  font-size:18px;
  font-weight:bold;
}

.cart-on .cartjs_product_input_txt{
  padding: 10px 10px!important;
    border-radius: 5px;
    border: 1px solid #333;
    width: 100%!important;
    max-width:60px;
    color:#000;
    text-align: center;
}

.cart-on .cartjs_cart_in input{
  font-size: 1.2em;
  border-radius: 10px;
    padding: 10px 20px;
    font-size: 1.2em;
    background: linear-gradient(45deg, #8d5e00 0%, #b99607 45%, #c2a950 70%, #b99607 85%, #8d5e00 90% 100%);
    position: relative;
    overflow: hidden;
}

.cart-on .cartjs_sk_link_other{
display:none;
}

[data-element-id].swiper-wrapper.newone-list>div{
  display:flex;
  justify-content: space-between;
}

[data-element-id].swiper-wrapper.newone-list>div>li{
  width:23%;
}

[data-element-id].swiper-wrapper.newone-list>div>li:nth-child(n+5){
  display:none;
}

[data-element-id].up-d-flex>.up-hide{
  margin-right:auto;
 order:3;
}

[data-element-id].sscontent-list .sscontent{
  position:relative;
  z-index:1;
  opacity:1;
}

[data-element-id].wp-v>div>li{
      background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    filter: drop-shadow(0 0 5px rgb(90, 90, 90));
}

[data-element-id].sscontent-list .sscontent{
  display:none;
}

[data-element-id].sscontent-list .sscontent:first-child{
  display:block;
}

[data-element-id].premium *{
  color:#000;
}

[data-element-id].true-cate-list>div{
  display:contents;
}
.nb-blog-tit{
  width:100%;
}

[data-element-id].cate-item .cate-txt-box{
     padding: 10px 10px 10px 10px;
}

[data-element-id].cate-item a{
  height:200px;
}

[data-element-id].cate-item a img{
  position:relative;
  top:0;
  height:150px;
  width:100%;
}

[data-element-id].cusnav-item .cate-txt-box{
     padding: 10px 10px 10px 10px;
}

[data-element-id].cusnav-item a{
  height:200px;
}

[data-element-id].cusnav-item a img{
  position:relative;
  top:0;
  height:150px;
  width:100%;
}

.gi-img{
  width:100px;
  float:left;
  margin:0 10px 10px;
}

@media(max-width:599px){
  .bgb {
    padding: 60px 0;
}
.bg01 {
    padding: 60px 0;
}

.bg02 {
    padding: 60px 0;
}

.bg03 {
    padding: 60px 0;
}

.bg04 {
    padding: 60px 0;
}

    .inner+.inner {
        margin-top: 60px;
    }
}

