@charset "utf-8";

body {--content-min-width: 1000px;}
#ga {position:fixed;bottom:0;left:0;z-index:9999;color:#f00;}

/* =============================================================
    effect
============================================================= */
a, a img {transition: all .2s ease-out;}
a:hover img {opacity: 0.8;}

@keyframes hvr-buzz {
    50% {transform: translateX(3px) rotate(2deg);}
    100% {transform: translateX(-3px) rotate(-2deg);}
}

/* =============================================================
    custom pc(共通CSSにあって値を変更したいもの、独自に設定したいものを記述)
============================================================= */
.floatL {
    float: left;
    margin: 0 2em 0 0;
}
.floatR {
    float: right;
    margin: 0 0 0 2em;
}
.rtxtC {text-align:center;}
.mbp2 {margin-bottom: 3em;}
.bigger {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5em;
}
.border-o {
    border: 5px solid #ffb400;
    border-radius: 10px;
    padding: 0.5em 1em;
}
/* section */
.sec {
    padding: 0 0 50px;
    position: relative;
}
.sec-inner {padding: 0 20px;}
.sec-inner:not(:last-child) {margin-bottom: 60px;}
/* title */
.title-1 {
    border-bottom: 3px solid var(--color-theme-primary);
    border-top: 3px solid var(--color-theme-primary);
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 20px;
    padding: 10px 0;
}
.title-2 {
    background-image: linear-gradient( 0deg, #ff4800 0%, #ff8500 100%);
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    padding: 10px 15px;
    margin: 0 0 20px;
}
/* button */
.btn-wrap {text-align: center;}
a.btn-1 {
    background: url(svg/arrow_01w.svg) no-repeat right 28px center / 18px,
                linear-gradient( 0deg, #ff4800 0%, #ff8500 100%);
    border: 3px solid;
    border-radius: 10px;
    color: #fff;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 16px 80px;
}
a.btn-2 {
    background: linear-gradient(to bottom, #002d7d 0%,#002d7d 50%,#001f57 51%,#001f57 100%);
    border-radius: 10px;
    font-weight: 700;
    padding: 20px 30px;
    display: inline-block;
}
a.btn-2 > span {
    color: #fff;
    background: url(svg/arrow_01w.svg) no-repeat 100% 50% / 18px;
    padding-right: 30px;
}
.btn-icon {
    border-radius: 10px;
    color: #fff;
    display: inline-block;
    font-size: 2rem;
    padding: 12px 24px;
}
.btn-icon.mail {background: linear-gradient(to bottom, #ffb400 0%,#ffb400 50%,#ff9200 51%,#ff9200 100%);}
.btn-icon.mtmr,
.btn-icon.phone {background: linear-gradient(to bottom, #002d7d 0%,#002d7d 50%,#001f57 51%,#001f57 100%);}
.btn-icon > span {
    color: #fff;
    display: inline-block;
    font-weight: 700;
    padding-left: 38px;
}
.btn-icon.mail > span {background: url(svg/icon_mail.svg) no-repeat 0 50% / 20px;}
.btn-icon.mtmr > span {background: url(svg/icon_pen.svg) no-repeat 0 50% / 24px;}
.btn-icon.phone > span {background: url(svg/icon_tel.svg) no-repeat 0 50% / 24px;}
a.btn-1:hover,
a.btn-2:hover,
.btn-icon:hover {
    animation-name: hvr-buzz;
    animation-duration: 0.15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
/* pagetitle */
.pagetitle-wrap {
    background: #f2f2f2 url(images/title_bg.jpg) no-repeat 50% 50% / cover;
    font-weight: 700;
    padding: 70px 0;
}
.pagetitle {
    font-size: 3.8rem;
}
.pagetitle-sub {
    color: var(--color-theme-primary);
    font-size: 1.4rem;
    text-transform: capitalize;
}
/* faq */
.faq-box {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
}
.home-faq .faq-box {
    border-color: #fff;
    box-shadow: 0 0 0 4px var(--color-theme-primary) inset;
}
.faq-box:not(:last-child) {margin-bottom: 20px;}
.faq-box-q {
    background: url(images/icon_q.png) no-repeat 0 0;
    color: #001e73;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 15px;
    padding: 4px 0 4px 48px;
}
.faq-box-q.green {
    background-image: url(images/icon_q2.png);
    color: #27ab39;
}
.faq-box-a {
    background: url(images/icon_a.png) no-repeat 0 0;
    padding: 8px 0 8px 48px;
}

/* =============================================================
    wrap,box
============================================================= */
.w1000 {
    margin-left:auto;
    margin-right:auto;
    width: 1000px;
}
.content-wrap {
    display: flex;
        justify-content: space-between;
    margin: 50px auto;
    padding-bottom: 50px;
    width: 1000px;
}
.content {
    order: 2;
    width: 700px;
}
.sidebar {
    order: 1;
    width: 270px;
}

/* =============================================================
    header
============================================================= */
.site-top {
    font-size: 1.1rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-block: .5em;
    overflow: hidden;
}
#header {}
.header-wrap {
    display: flex;
        align-items: center;
        justify-content: space-between;
    padding: 5px 0 10px;
    position: relative;
}

/* header-logo
--------------------------------- */
.header-logo {
    width: calc(355 / 1000 * 100%);
    gap: 0 7px;
    display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-self: flex-end;
    text-align: center;
}
.header-logo__inner {
    width: calc(300 / 354 * 100%);
}
.logo {
    color: var(--color-theme-primary);
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
}
.logo[data-judge="inline"] {
    gap: 5px;
    display: flex;
        align-items: baseline;
}
.logo[data-judge="inline"] .logo__image {
    width: 240px;
}
.logo[data-judge="block"] {}
.logo__image {}
.logo__text {
    font-size: 18px;
}
.header-maker {
    background: var(--color-theme-primary);
    border-radius: 30px;
    color: #fff;
    font-size: 1.1rem;
    padding-block: .4em .2em;
    transition: all .2s ease-out;
}
.header-logo:hover .logo__text,
.header-logo:hover .header-maker {
    opacity: .8;
}
.header-area {
    background: linear-gradient(0deg, #f2f2f2 0%,#ffffff 100%);
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    width: calc(235 / 1000 * 100%);
}
.header-area-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
}
.header-area-list__item {
    color: #fff;
    font-size: 1.2rem;
    border-radius: 2px;
    font-weight: 700;
    line-height: 1;
    padding: 2px 6px;
}
.header-area__bottom {
    display: block;
    margin: 5px auto 0;
}


.header-btn {
    text-align: center;
}

.header-btn__info {
    display: grid;
    grid-template-areas:
        "tel  link"
        "time link"
    ;
    justify-items: center;
    gap: 3px 5px;
}

.header-btn__tel {
    grid-area: tel;
    display: flex;
    align-items: center;
    align-self: flex-end;
    gap: 5px;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
}

.header-btn__time {
    grid-area: time;
    display: flex;
    align-items: baseline;
    align-self: flex-start;
    gap: .8em;
    font-size: 1.3rem;
    font-weight: 700;
}
.header-btn__label {
    background: #ffb400;
    border-radius: 5px;
    color: #fff;
    padding: .25em .5em .15em;
}

.header-btn__link {
    grid-area: link;
}

/* main navi
--------------------------------- */
#gnav {
    background: linear-gradient(to bottom, var(--color-theme-primary) 0%,var(--color-theme-primary) 50%,var(--color-theme-primary-deep) 51%,var(--color-theme-primary-deep) 100%);
}
.mainnav {
    display: flex;
        flex-wrap: wrap;
        justify-content: center;
}
.mainnav > li {
    border-right: 1px solid rgba(255,255,255,0.5);
    flex: 1 1 auto;
}
.mainnav > li:first-child {
    border-left: 1px solid rgba(255,255,255,0.5);
}
.mainnav > li > a {
    color: #fff;
    display: block;
    font-weight: 700;
    padding: 13px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}
.mainnav > li > a::before {
    background: linear-gradient(to bottom, #ebebeb 0%, #fff 100%);
    content: "";
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    transition: inherit;
}
.mainnav > li > a:hover {color: var(--color-theme-primary);}
.mainnav > li > a:hover::before {opacity: 1;}

/* sub navi
--------------------------------- */
.sub-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 5px;
}
.sub-nav__link {
    background: #e6e6e6;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: .385em;
    font-size: 1.3rem;
    font-weight: 700;
    padding: .3em .85em;
}
.sub-nav__link.current {
    background: var(--color-theme-primary);
    color: #fff;
}
.sub-nav__link:hover {
    color: #fff;
}
.sub-nav__link[href*="chikaramoti"]:hover {
    background: var(--color-theme-ecocute);
}
.sub-nav__link[href*="gas"]:hover {
    background: var(--color-theme-gas);
}
.sub-nav__link::before {
    border-style: solid;
    border-width: 4.5px 0 4.5px 6px;
    border-color: transparent transparent transparent currentColor;
    content: "";
    width: 0;
    height: 0;
}


/* =============================================================
    footer
============================================================= */
.footer-wrap {
    text-align: center;
}
.copyright {
    display: block;
    font-size: 1.1rem;
    padding: 0 0 30px;
}

/* footer navi
--------------------------------- */
.footer-navi {
    display: flex;
        flex-wrap: wrap;
        justify-content: center;
    padding: 20px 0;
}
.footer-navi.pc {
    background: var(--color-theme-primary);
    color: #fff;
    padding: 35px 0;
}
.footer-navi a {
    display: inline-block;
    line-height: 1.2;
    padding: 0 1em;
}
.footer-navi.pc a {color: #fff;}
.footer-navi a:hover {text-decoration: underline;}
.footer-navi li:not(:last-child) {
    border-right: 1px solid;
}

/* fixed
--------------------------------- */
#fixed {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}
#fixed.on {
    opacity: 1;
    visibility: visible;
}
#fixed > li {margin: 0 0 10px;}


.fixed-tel {
    position: relative;
}

.fixed-tel__content {
    background: #fff;
    border-radius: 0 0 10px 10px;
    font-weight: 700;
    padding: 10px 4px;
    margin: 5px;
    position: absolute;
    inset: auto 0 0 0;
}
.fixed-tel__num {
    color: #002d7d;
    font-family: var(--sub-font);
    font-size: 2.1rem;
    margin-bottom: .5em;
}
.fixed-tel__text {
    color: var(--color-accent-error);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: .2em;
}
.fixed-tel__human {

}
.fixed-tel__time {
    font-size: 1.4rem;
}
.fixed-tel__time .red {
    font-size: 1.428em;
}

.fixed-line {
    display: block;
    position: relative;
    transition: opacity .2s;
}
.fixed-line:hover * {
    opacity: 1;
}
.fixed-line:hover {
    opacity: .8;
}
.fixed-logo {
    color: var(--color-theme-primary);
    font-size: 1.1rem;
    font-weight: 700;
    position: absolute;
    inset: auto 0 125px 0;
}
.fixed-logo[data-judge="inline"] {
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.fixed-logo[data-judge="block"] {}
.fixed-logo__image {}
.fixed-logo__text {
    margin-top: .2em;
}

/* pagetop */
#pagetop {
    background: #001f57;
    border-radius: 10px;
    color: #fff;
    display: block;
    font-size: 1rem;
    padding: 15px 0;
    text-align: center;
    text-decoration: none;
}
#pagetop:hover {
    background: #002d7d;
    text-decoration: none;
}


/* =============================================================
    contact area
============================================================= */
.contact-area {
    background: #fff url(images/contactarea_bg.jpg) no-repeat 100% 50%;
    border: 6px solid #ffb400;
    padding: 18px 15px;
}
.contact-area-text {
    font-size: 1.8rem;
    font-weight: 700;
}
.contact-area-uktk {
    display: flex;
        align-items: center;
    margin: 5px;
}
.contact-area-uktk .btn-icon {margin-left: 5px;}

/* contact-area2 */
.contact-area2 {}

/* =============================================================
    common
============================================================= */
/* accordion  */
.acc-panel,
.shop__panel {
    font-size: 2rem;
    padding: 8px 45px 8px 17px;
}
.acc-panel::before,
.shop__panel::before {
    border-width: 20px 20px 0 0;
}

/* =============================================================
    side(PC only)
============================================================= */
/* side-contact */
.side-contact {
    background: var(--color-theme-primary);
    border-radius: 10px;
    text-align: center;
    margin: 0 0 20px;
    padding: 20px 10px 10px;
}
.side-contact-inner {
    background: #fff;
    border-radius: 0 0 10px 10px;
    padding: 10px;
}

.side-contact-inner__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 3rem;
    font-weight: 700;
}
.side-contact-inner__time {
    font-size: 1.3rem;
    font-weight: 700;
}

.side-contact-inner .btn-icon {
    display: block;
}
/* side-bnr */
.side-bnr {margin: 0 0 20px;}
.side-bnr > li {margin: 0 0 20px;}
.side-bottom-bnr {
    display: block;
    margin: 20px auto;
}
/* side-shop */
.side-shop__group .acc-panel {
    font-size: 1.8rem;
    padding: 10px 35px 10px 17px;
}
.side-shop__group .acc-panel__plus::before,
.side-shop__group .acc-panel__plus::after {
    width: 16px;
    height: 2px;
}
.side-shop__title {
    display: block;
    margin: 0 auto 15px;
}
.side-shop-list {
    margin-top: 10px;
}
/* side-navi */
.side-navi {
    background: var(--color-theme-primary);
    padding: 20px 10px 10px;
    position: -webkit-sticky;
    position: sticky;
    top: 10px;
}
.side-navi li:not(:last-child) {
    margin: 0 0 5px;
}
.side-navi a {
    background: linear-gradient(180deg, #fff, #ececec 100%);
    border: 1px solid #ddd;
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 18px 20px;
    position: relative;
}
.side-navi a::after {
    border-right: 3px solid;
    border-top: 3px solid;
    content: "";
    margin: auto;
    height: 8px;
    width: 8px;
    position: absolute;
    bottom: 0;
    right: 18px;
    top: 0;
    transform: rotate(45deg);
}

/* =============================================================
    home
============================================================= */
/* home-top
--------------------------------- */
.home-top {
    background: url(images/home-top_bg.png) no-repeat 50% 100% / cover;
    text-align: center;
    padding-block-start: 20px;
}
.home-top-footer {
    background: #fff;
    text-align: center;
    padding: 2px 0;
}

/* home-results
--------------------------------- */
.home-results {
    background: repeating-linear-gradient(90deg, var(--color-theme-primary-light), var(--color-theme-primary-light) 9px, var(--color-theme-primary) 9px, var(--color-theme-primary) 18px);
    padding: 0 0 10px;
    /* margin-top: 40px; */
}
.home-results-title {
    text-align: center;
    padding: 60px 0 40px;
}
.home-results-title-img {
	/* margin-top: -45px; */
}
/* results-slide */
#results-slide {margin: 0 0 40px;}
.results-slide-box {margin: 0 10px;}
#results-slide .results-list-box {margin-bottom: 0;}

/* top-movie
--------------------------------- */
.top-movie__title {
    text-align: center;
    margin: 40px 0 10px;
}
.top-movie__wrap {
    max-width: 1000px;
    margin: auto;
    position: relative;
}
.top-movie__wrap::before {
    content: '';
    display: block;
    padding-top: 45%;
}
.top-movie__youtube {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.youtube-dummy .top-movie__youtube {
    object-fit: cover;
}
.youtube-dummy::after {
    background: url(svg/play-button.svg) no-repeat 50% 50% / contain;
    content: '';
    opacity: .8;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 68px;
    height: 48px;
    transform: translate(-50%,-50%);
}

/* covid-bnr
--------------------------------- */
.covid-bnr {
    text-align: center;
    display: block;
}

/* home-bnr
--------------------------------- */
.home-intro-area {
    background: linear-gradient(0deg, #f2f2f2 0%,#ffffff 100%);
    width: 100%;
    border-radius: 10px;
    border: 1px solid #cccccc;
    padding: calc(20 / 700 * 100%);
    margin-bottom: 20px;
}
.home-intro-area:hover {
    color: inherit;
}
.home-intro-area-title {
    display: block;
    margin: 0 auto 25px;
}
.home-intro-area-title__inner {
    color: var(--color-accent-error);
    font-size: 2.4rem;
    font-weight: 700;
}
.home-intro-area-list {
    --column-gap: clamp(5px, calc(10 / 640 * 100vw), 10px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px var(--column-gap);
}

.home-intro-area-list__item {
    flex: 0 1 calc(50% - var(--column-gap));
    /* width: calc(325 / 660 * 100%); */
    background: #fff;
    padding: 0 18px 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
}
.home-intro-area-list__label {
    border-radius: 15px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    width: calc(150 / 325 * 100%);
    margin: -15px auto 0;
}
.home-intro-area-list__content {
    font-weight: 700;
    margin-top: 10px;
}
.home-intro-area-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0 10px;
    margin-top: 10px;
}
.home-intro-area-bottom__search {
    font-size: 1.8rem;
    font-weight: 700;
}
.home-intro-area-bottom__icon {
    margin-left: 5px;
}
.home-bnr {
    display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    margin: 0 0 20px;
}
.home-bnr > a {
    display: block;
    margin: 0 0 20px;
}
.home-bnr .btn-wrap {
    margin-top: 20px;
    width: 100%;
}

/* home-reason
--------------------------------- */
.home-reason {
    background: var(--color-theme-primary);
    padding: 30px 20px 20px;
    margin: 0 0 60px;
}
.home-reason-title {
    text-align: center;
    margin: 0 0 25px;
}
.home-reason-navi {
    display: flex;
        flex-wrap: wrap;
        justify-content: center;
    margin: 0 0 30px;
}
.home-reason-navi > li {
    margin: 0 4px 10px;
}
.home-reason-box {
    background-color: #fff;
    background-position: 0 0;
    background-repeat: no-repeat;
    padding: 35px 30px;
    position: relative;
}
.home-reason-box:nth-of-type(odd) {background-color: #ffffbb;}
.home-reason-box:nth-of-type(1) {
    background-image: url(images/home-reason_p1.png);
    background-color: #abe8f5;
}
.home-reason-box:nth-of-type(2) {background-image: url(images/home-reason_p2.png);}
.home-reason-box:nth-of-type(3) {background-image: url(images/home-reason_p3.png);}
.home-reason-box:nth-of-type(4) {background-image: url(images/home-reason_p4.png);}
.home-reason-box:nth-of-type(5) {background-image: url(images/home-reason_p5.png);}
.home-reason-box:nth-of-type(6) {background-image: url(images/home-reason_p6.png);}
.home-reason-box:first-of-type {border-radius: 10px 10px 0 0;}
.home-reason-box:last-of-type {border-radius: 0 0 10px 10px;}
.home-reason-box-title {
    text-align: center;
    margin: 15px 0 10px;
}
/* reason-1 */
.home-reason-box:nth-of-type(1) .home-reason-box-title {margin-bottom: 30px;}

.home-reason-area[data-count="1"] {--padding-bottom: 600px;}
.home-reason-area[data-count="2"] {--padding-bottom: 560px;}
.home-reason-area[data-count="3"] {--padding-bottom: 520px;}
.home-reason-area[data-count="4"] {--padding-bottom: 480px;}
.home-reason-area[data-count="5"] {--padding-bottom: 440px;}

.home-reason-area {
    background: url(../../../shop-data/images/home-reason_01bg.png) 50% bottom no-repeat;
    padding: 0 calc(100% - (310 / 600 * 100%)) var(--padding-bottom, 400px) 0;
}
.home-reason-area-title {
    color: var(--color-accent-error);
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.home-reason-area__icon {
    margin-right: 5px;
}
.home-reason-area__group {
    display: flex;
    gap: 0 3px;
    font-size: 1.4rem;
}
.home-reason-area__group + .home-reason-area__group {
    margin-top: 3px;
}
.home-reason-area__label {
    color: #fff;
    font-weight: 700;
    border-radius: 6px 0 0 6px;
    width: calc(110 / 310 * 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-reason-area__content {
    background: #fff;
    width: calc(200 / 310 * 100%);
    padding: 10px 15px;
}

/* reason-2 */
.home-reason-2-box {
    background-image: linear-gradient( 0deg, #f2f2f2 0%, #fff 100%);
    border: 1px solid #ccc;
    border-radius: 10px;
    display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    line-height: 1.4;
    font-weight: 700;
    padding: 20px;
}
.home-reason-2-title {
    color: #fe6b6b;
    font-size: 2.1rem;
    text-align: center;
    margin: 0 0 10px;
    width: 100%;
}
.home-reason-2-list {
    width: 49%;
}
.home-reason-2-list > li {
    background: url(svg/icon_check.svg) no-repeat 0 0.3em / 31px;
    font-size: 2rem;
    padding: 8px 0 8px 40px;
}
.home-reason-2-image {
    position: absolute;
    bottom: 35px;
    right: 30px;
}
.home-reason-2-text {
    width: 48%;
}
/* reason-4 */
.home-reason-4 {
    background: url(images/home-reason_04c.png) no-repeat right top;
    padding: 0 0 40px;
}
/* reason-5 */
.home-reason-5 {
    display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
}
.home-reason-5 > li {}

/* home-promise
--------------------------------- */
.home-promise {
    margin: 0 0 30px;
}
.home-promise-title {
    text-align: center;
    margin: 0 0 60px;
}
.home-promise-list {
    display: flex;
        justify-content: space-between;
}
.home-promise-list > li {
    background-image: linear-gradient( 0deg, #f2f2f2 0%, #fff 100%);
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1.4rem;
    padding: 0 14px 20px;
    width: 220px;
}
.home-promise-list-label {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent-error);
    text-shadow: #ff0 2px 0px, #ff0 -2px 0px,#ff0 0px -2px, #ff0 0px 2px,#ff0 2px 2px , #ff0 -2px 2px,#ff0 2px -2px, #ff0 -2px -2px,#ff0 1px 2px,  #ff0 -1px 2px,#ff0 1px -2px, #ff0 -1px -2px,#ff0 2px 1px,  #ff0 -2px 1px,#ff0 2px -1px, #ff0 -2px -1px;
    line-height: 1.4;
    margin: 0 0 10px;
}
.home-promise-list-image {
    display: block;
    margin: -30px auto 15px;
}

/* home-price
--------------------------------- */
.home-price {
    background: #fff url(images/home-price_bg.png) no-repeat 0 0;
    text-align: center;
    margin: 0 0 55px;
    padding: 30px 0 0;
}
.home-price-image {margin: 0 0 40px;}

/* home-flow
--------------------------------- */
.home-flow {margin: 0 0 60px;}
.home-flow-title {}
.home-flow-list {
    display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 20px;
    counter-reset: flow-num;
}
.home-flow-box {
    background-color: var(--color-theme-primary-bright);
    border-radius: 10px;
    text-align: center;
    position: relative;
    margin: 30px 0 0;
    padding: 50px 15px 20px;
    width: 220px;
}
.home-flow-step {
    color: var(--color-theme-primary-pale);
    font-size: 3rem;
    letter-spacing: -.05em;
    position: absolute;
    top: -20px;
    right: 0;
    left: 0;
    line-height: 1;
}
.home-flow-step::after {
    counter-increment: flow-num;
    content: counter(flow-num);
    font-size: 2.067em;
}
.home-flow-box:not(:nth-child(3n)):not(:last-child)::after {
    background: #fff url(svg/arrow_01b.svg) no-repeat 0 0 / contain;
    border-radius: 50%;
    content: "";
    margin: auto;
    width: 34px;
    height: 34px;
    position: absolute;
    bottom: 0;
    right: -26px;
    top: 0;
    transform: rotate(0);
    z-index: 1;
}
.home-flow-thumb {border-radius: 50%;}
.home-flow-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-theme-primary);
    line-height: 1.4;
    margin: 15px 0 0;
}

/* home-faq
--------------------------------- */
.home-faq {
    background: var(--color-theme-primary);
    margin: 0 0 40px;
    padding: 20px;
}
.home-faq-title {
    text-align: center;
    margin: -35px 0 20px 110px;
}

/* home-voice
--------------------------------- */
.home-voice {margin: 0 0 50px;}

/* home-area
--------------------------------- */
.home-area {margin: 0 0 50px;}
.home-area-title {}

/* home common
--------------------------------- */
.home-sec {
    margin: 0 0 50px;
}
.bnr-navi {
    display: flex;
        justify-content: space-between;
}

/* home product
--------------------------------- */
.home-products-list {
    background: var(--color-theme-primary);
    box-shadow: 5px 5px 10px -5px #ffb400;
    border-radius: 10px;
    margin: 0 20px 60px;
    padding: 20px;
    gap: 20px;
    display: flex;
        flex-wrap: wrap;
        justify-content: center;
}
.home-products-list__content {
    background: #fff;
    filter: drop-shadow(5px 5px 5px rgba(51,51,51,.7));
    border-radius: 10px;
    width: 300px;
    padding: 20px 15px;
    font-weight: bold;
    text-align: left;
}
.home-products-list__type {
    display: flex;
        align-items: center;
        justify-content: space-between;
    margin-bottom: 15px;
}
.home-products-list__title {
    margin-bottom: 10px;
    font-size: 2.25em;
    line-height: 1;
    word-break: break-all;
}

.home-products-list-retail {
    font-size: 1.25em;
}

.home-products-list-retail__tax,
.home-products-list__accessories {
    font-size: .875em;
}

.home-products-list__image {
    margin-block: 10px;
    gap: 20px;
    display: flex;
        align-items: center;
        justify-content: flex-end;
}
.home-products-list__thumb {}
.home-products-list__badge {
    gap: 5px;
    display: flex;
    align-items: center;
        flex-direction: column;
}

.home-products-list-discount {
    position: relative;
}
.home-products-list-discount__number {
    color: #fff;
    position: absolute;
        top: 22px;
        left: 10px;
    font-size: 4rem;
    letter-spacing: -0.05em;
}

.home-products-list__remarks {
    color: #b90a1c;
    line-height: 1.125;
}

.home-products-list-price {
    margin-block-start: 10px;
    font-size: 18px;
    line-height: 1;
    display: flex;
        align-items: center;
}
.home-products-list-price__label {
    background-color: #ff6600;
    color: #fff;
    padding: 3px 7px;
    margin-inline-end: 10px;
    font-size: .611em;
    line-height: 1.2;
}
.home-products-list-price__number {
    background: linear-gradient(0deg, #ff2e1e 30%, #fca600 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ff2e1e;
    font-size: 2.5em;
    letter-spacing: -0.04em;
}
.home-products-list-price__number[data-count-length="6"] {
    font-size: 2.3em;
}
.home-products-list-price__number[data-count-length="7"] {
    font-size: 2em;
}
.home-products-list-price__unit {
    font-size: .66em;
}
.home-products-list-price__tax {
    background: linear-gradient(0deg, #ff2e1e 20%, #fca600 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ff2e1e;
    font-size: 1.6rem;
    writing-mode: vertical-rl;
}

.product-maker {
    text-align: center;
    margin-bottom: 40px;
}

.product-maker__catch {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
}
.product-maker__box {
    border: 1px solid #ddd;
    box-shadow: 0px -15px 25px -1px #ededed inset;
    border-radius: 10px;
    padding-block: 10px;
    gap: 50px;
    display: flex;
        justify-content: center;
}


/* =============================================================
    page flow
============================================================= */
.flow-wrap {
    counter-reset: flow-num;
}
.flow-box {
    display: flex;
        align-items: center;
        justify-content: space-between;
    padding: 40px 20px;
    position: relative;
}
.flow-box:nth-child(odd) {background-color: var(--color-theme-primary-bright);}
.flow-box:not(:last-child)::after {
    background: #fff url(svg/arrow_01b.svg) no-repeat 0 0 / contain;
    border-radius: 50%;
    content: "";
    margin: auto;
    width: 34px;
    height: 34px;
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    transform: rotate(90deg);
    z-index: 1;
}

.flow-box-step {
    color: var(--color-theme-primary-pale);
    display: flex;
        align-items: center;
    font-size: 3rem;
    letter-spacing: -.05em;
    line-height: 1;
}
.flow-box-step::after {
    counter-increment: flow-num;
    content: counter(flow-num);
    font-size: 4em;
}

.flow-box-inner {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 500px;
}
.flow-box-thumb {
    border-radius: 50%;
    order: 2;
}
.flow-box-content {
    order: 1;
    width: 290px;
}
.flow-box-note {
    border: 1px solid #ccc;
    border-radius: 10px;
    order: 3;
    font-size: 1.4rem;
    margin: 1em 0 0;
    padding: 10px 15px;
}

/* =============================================================
    page products
============================================================= */
.products-wrap {margin: 0 0 50px;}
.products-header {text-align: center;}
.products-box {
    background: #27ab3a;
    text-align: center;
    margin: 0 0 20px;
    padding: 35px 20px 20px;
    position: relative;
}
.products-box.products-1 {background: #27ab3a;}
.products-box.products-2 {background: #ffb400;}
.products-box.products-3 {background: #21afc1;}
.products-box::before {
    content: "";
    height: 135px;
    width: 135px;
    position: absolute;
    left: 0;
    top: 0;
}
.products-box.products-1::before {background-image: url(images/products_1_label.png);}
.products-box.products-2::before {background-image: url(images/products_2_label.png);}
.products-box.products-3::before {background-image: url(images/products_3_label.png);}
.products-box-title {
    color: #fff;
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    /* margin: 0 0 30px 50px; */
}
.products-box-inner {
    border: 3px solid #fff;
    border-radius: 10px;
    display: grid;
    gap: 20px;
    padding: 20px 17px;
}
.products-box .btn-wrap {margin: 20px 0;}


/* page product
--------------------------------- */
.product {
    border: 3px solid #fff;
    border-radius: 10px;
    padding: 18px;
}
.product__box {
    background-color: #fff;
    display: block;
    font-weight: bold;
    border-radius: 10px;
    padding: 1em;
}
.product__box + .product__box {
    margin-top: 20px;
}

.product__type {
    margin-bottom: 10px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.product__title {
    font-size: 3rem;
}

.product-cost {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.product-cost__box {
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 320px;
    padding: 2px;
    display: flex;
    flex-direction: column;
}
.product-cost__box--w200 {
    width: 200px;
}
.product-cost__header {
    background-color: #ccc;
    border-radius: 8px 8px 0 0;
    font-size: 1.8rem;
    padding: 3px;
}
.product-cost__footer {
    padding: 10px;
    margin-block: auto;
}
.product-cost__detail {
    text-align: left;
}
.product-cost__detail + .product-cost__detail {
    margin-top: 15px;
}
.product-cost-price__group {
    display: flex;
    justify-content: space-between;
}
.product-cost__plus {
    fill: var(--color-accent-error);
    align-self: center;
    height: 29px;
    width: 29px;
}

.product-main {
    margin-top: 20px;
    gap: 20px;
    display: flex;
        align-items: center;
}
.product-main__image {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-main__thumb {
    /* border: 0.5px solid #ccc; */
    border-radius: 10px;
    width: 145px;
    height: 140px;
    padding: 5px;
    object-fit: contain;
}
.product-main-total {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-main-total__label {
    padding: 5px 8px;
    background-color: #ff6600;
    color: #fff;
}
.product-main-total__price {
    background: linear-gradient(0deg, #ff2e1e 30%, #fca600 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8125em;
    color: #ff2e1e;
    letter-spacing: -0.04em;
    line-height: 1;
}
.product-main-total__price[data-count-length="7"] {
    font-size: 2.4em;
}
.product-main-total__unit {
    font-size: 2.4rem;
}
.product-main-total__tax {
    font-size: 2rem;
}
.product__remarks {
    text-align: left;
    font-size: 1.4rem;
    margin-top: 10px;
}


/* product-single
--------------------------------- */
.product-single {
    margin-bottom: 50px;
}
.product-tag-label {
    border-radius: 3em;
    color: #fff;
    font-size: clamp(1.2rem,2.08vw,1.6rem);
    font-weight: 700;
    padding: 0.125em 1.5em;
}
.product-tag-label--unit {
    background: var(--color-accent-error);
}

.product-single__type {
    font-size: clamp(1.4rem, 5vw, 2.4rem);
    font-weight: 700;
    margin-block: 20px 10px;
}

.product-single__title {
    font-size: clamp(2.4rem, 8vw, 4rem);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0;
    word-break: break-all;
    margin-bottom: 1.5em;
    padding-left: 2.1em;
    position: relative;
    border-bottom: 6px solid #1962e8;
    padding-bottom: 15px;
}
.product-single__title::before {
    border: 2px solid;
    content: '品番';
    font-size: clamp(1.6rem,4vw,1.8rem);
    font-weight: bold;
    padding: 0.123em 0;
    width: 3.667em;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0.25em;
    margin-top: 5px;
}

.product-single-info {
    text-align: center;
}
.product-single-info__title {
    background: var(--color-theme-primary);
    border-radius: 20px 20px 0 0;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    padding: 0.5em;
}
.product-single-info__container {
    border: 3px solid var(--color-theme-primary);
    border-radius: 0 0 20px 20px;
    padding: 30px;
}
.product-single-info__plus {
    fill: var(--color-accent-error);
    display: block;
    margin: 0.75em auto;
    height: 29px;
    width: 29px;
}
.product-single-info__note {
    max-width: 480px;
    background: #ffb400;
    line-height: 1.4;
    margin: 1.2em auto 0;
    font-weight: bold;
    font-size: 1.8rem;
        padding: 0.4em 1em;
}

.product-single-retail {
    max-width: 480px;
    border: 1px solid #ccc;
    font-size: clamp(1.4rem,2.81vw,1.8rem);
    font-weight: bold;
    padding: 0.2em 1em;
    margin: auto;
}
.product-single-retail__num {
    font-size: 1.333em;
    font-weight: 900;
}

.product-single-price {
    color: var(--color-accent-error);
    font-size: clamp(1.6rem,3.75vw,2.4rem);
    font-weight: bold;
    line-height: 1;
}
.product-single-price__box {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.product-single-retail + .product-single-price::before {
    border-style: solid;
    border-width: 15px 10px 0 10px;
    border-color: #ddd transparent transparent transparent;
    content: '';
    display: block;
    margin: 0.65em auto;
    width: 0;
    height: 0;
}
.product-single-price__wrap {
    background: var(--price-marker);
    display: inline-block;
    text-align: left;
}
.product-single-price__num {
    font-size: 2.5em;
}

.product-single-off {
    position: relative;
    color: #113575;
}
.product-single-off__text {
    font-size: 4rem;
    top: 27px;
    left: 4px;
    position: absolute;
    letter-spacing: -0.08em;
}

.product-single-change {}
.product-single-change__title {
    max-width: 480px;
    background: #f60;
    color: #fff;
    font-size: clamp(1.8rem,2vw,2rem);
    font-weight: bold;
    margin: 0 auto 0.8em;
    padding: 0.4em 1em;
}

.product-single-cost {
    font-size: clamp(1.6rem,2.81vw,1.8rem);
    font-weight: bold;
    margin-bottom: 1em;
}
.product-single-cost__num {
    font-size: 1.78em;
    font-weight: bold;
}

.product-single-total {
    background: var(--price-marker);
    color: var(--color-accent-error);
    font-size: clamp(1.8rem,4.69vw,3rem);
    font-weight: bold;
    line-height: 1;
    display: inline-block;
}
.product-single-total__label {
    background: #fff;
    border: 2px solid;
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    padding: 0.25em 0.5em;
    position: relative;
    top: -0.5em;
}
.product-single-total__num {
    font-size: 2.5em;
    letter-spacing: -0.06em;
}

.product-relate {
    margin-bottom: 3em;
}
.product-relate__title {
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 1.5em;
    position: relative;
    border-bottom: 6px solid #1962e8;
    padding-bottom: 15px;
}

/* breakdown
--------------------------------- */
.breakdown {
    background: #ffffbb;
    font-size: clamp(1.6rem,3vw,1.8rem);
    padding: min(3vw,30px);
    margin-bottom: 6.7em;
}
.breakdown__label {
    color: var(--color-accent-error);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.8rem,4vw,2.4rem);
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 0.5em;
}
.breakdown__label::before,
.breakdown__label::after {
    background: var(--color-accent-error);
    content: '';
    display: block;
    width: 1.5em;
    height: 2px;
    margin: 0 0.75em;
}

/* check list
--------------------------------- */
.check-list__ul {
    max-width: 500px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 1em;
    margin: auto;
}
.check-list__item {
    font-weight: bold;
    line-height: 1.4;
    padding-left: 1.333em;
    position: relative;
}
.check-list__item .check {
    width: 1.125em;
    height: 1.125em;
    position: absolute;
    left: 0;
    top: 0.15em;
}
.breakdown__bnr {
    text-align: center;
    margin-top: 1em;
}


/* taxonomy product
--------------------------------- */
.maker-list-title {
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: 1.5em;
    position: relative;
    border-bottom: 6px solid #1962e8;
    padding-bottom: 15px;
}
.maker-products {
    border: 1px solid #ccc;
    border-radius: 30px;
    font-weight: bold;
    padding: 2.5em 4em;
}
.maker-products + .maker-products {
    margin-top: 20px;
}
.maker-products__intro {
    display: flex;
        align-items: flex-start;
    gap: 40px;
}
.maker-products__image {
    /* border: .5px solid #ccc; */
    border-radius: 10px;
    width: 145px;
    height: 145px;
    padding: 5px;
    object-fit: contain;
}
.maker-products__content {
    gap: 10px;
    display: flex;
        flex-direction: column;
        align-items: flex-start;
}
.maker-products__name {
    font-size: clamp(3.5rem, 5vw, 4.8rem);
    line-height: 1;
    word-break: break-all;
}
.maker-products-construction {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.maker-products-construction__content {
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.maker-products-construction__num {
    background: var(--price-marker);
    color: var(--color-accent-error);
    display: inline-block;
    font-size: clamp(4rem, 7.81vw, 6rem);
    font-weight: 900;
    line-height: 1;
}
.maker-products-construction__num > .yen {
    font-size: .5em;
}
.maker-products-construction__num > .tax {
    font-size: .25em;
}
.maker-products__btn {
    width: 100%;
    text-align: center;
    margin-top: 2em;
}

/* =============================================================
    page warranty
============================================================= */
.warranty-info {
    display: flex;
        flex-wrap: wrap;
}
.warranty-info > dt {
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    margin: 10px 0;
    width: 280px;
}
.warranty-info > dd {
    border: 5px solid #ffb400;
    border-left-width: 0;
    border-radius: 0 10px 10px 0;
    font-size: 1.4rem;
    display: flex;
        align-items: center;
    margin: 10px 0;
    padding: 15px 20px;
    width: calc(100% - 280px);
}

/* =============================================================
    page company
============================================================= */
.table-1 tr:nth-child(even) {background: #f5f5f5;}
.table-1 th,
.table-1 td {
    padding: 10px 20px;
}
.table-1 th {font-weight: 700;}
.googlemap {
    vertical-align: middle;
    margin: 30px 0 0;
    height: 320px;
    width: 100%;
}
/* shop-list */
.shop__group + .shop__group {
    margin-top: 10px;
}
.shop-list {
    margin: 20px 30px 40px;
    display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 20px;
}
.shop-list__box {
    display: block;
    max-width: calc(200 / 640 * 100%);
}
.shop-list__thumb {
    width: 200px;
    height: 140px;
    object-fit: cover;
}
.shop-list__inner {
    margin-top: 20px;
}
.shop-list__name {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 5px;
}
.shop-list__add {
    line-height: 1.28;
}
/* side shop */
.sidebar .shop-list {
    justify-content: flex-start;
    gap: 0;
}
.sidebar .shop-list__box {
    padding-bottom: 15px;
    background: #fff;
    max-width: inherit;
        display: flex;
        justify-content: space-between;
}
.sidebar .shop-list__box + .shop-list__box {
    border-top: 1px solid #999;
    padding-top: 15px;
}
.side-shop-list__thumb {
    width: 93px;
    height: 93px;
    object-fit: cover;
}
.side-shop-list__inner {
    width: calc(100% - 105px);
    margin-top: 0;
}
.sidebar .shop-list__name {font-size: 1.6rem;}
.sidebar .shop-list__add {font-size: 1.4rem;}

/* =============================================================
    page check
============================================================= */
.check-logo {}

/* =============================================================
    page area
============================================================= */
/* area-intro */
.area-intro__title {
    text-align: center;
    margin: 0 0 30px;
}
.area-intro__map {
    background: url(../../../shop-data/images/area_01.png) no-repeat 0 0 / cover;
    padding-bottom: 357px;
}
.area-intro__content {
    width: 380px;
    margin-bottom: 45px;
}
.area__content {
    margin-top: 20px;
}
.area-list {
    margin: 20px 20px 30px;
}
.area-list__item + .area-list__item {
    margin-top: 30px;
}
.area-list__label {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--color-theme-primary);
}
.area__group + .area__group {
    margin-top: 15px;
}
.area-list__content {
    line-height: 1.875;
}

/* =============================================================
    form
============================================================= */
.form-wrap {
    margin: 50px auto;
}
.form-content {
    background: var(--color-theme-primary);
    border-radius: 20px;
    padding: 20px;
}
.form-content-inner {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
}
.form-images-box {
    overflow: hidden;
}
.form-images-box:not(:last-child) {
    margin: 0 0 30px;
}
.form-images-sample {
    float: right;
    margin-left: 20px;
    width: 200px;
}
.mw_wp_form_confirm .form-images-sample {display: none;}
.form-images-title {
    color: #ec6617;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 10px;
}
.form-images-pic {
    background: #f5f5f5;
    display: inline-block;
    padding: 12px 20px;
}
.mw_wp_form_confirm .form-images-pic {padding: 0;}
.noreq {
    background: #f5f5f5;
    display: inline-block;
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1;
    vertical-align: middle;
    margin-right: 1em;
    padding: 0.5em 1em;
}
/* form-table */
.form-table {
    background: #ccc;
    border-collapse: separate;
    border-spacing: 2px;
    margin: 0 0 30px;
}
.form-table th,
.form-table td {
    padding: 20px;
    vertical-align: middle;
}
.form-table th {
    background: #f5f5f5;
    font-weight: 700;
}
.form-table td {background: #fff;}
.form-table th.req + td {
    background: #fdf6f6;
}

/* =============================================================
    results
============================================================= */
/* results-list
--------------------------------- */
.results-list {
    display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
}
.results-list-box {
    background: #fff;
    border-top: 4px solid var(--color-theme-secondary);
    box-shadow: 0 -1px 0 1px #ccc inset;
    border-radius: 0 0 10px 10px;
    display: block;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0 0 20px;
    padding: 15px 20px 20px;
    width: 340px;
}
.results-list-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 15px;
}
.results-list-ba {
    display: flex;
        justify-content: space-between;
    margin: 0 0 20px;
    position: relative;
}
.results-list-ba::before {
    border-style: solid;
    border-width: 12px 0 12px 10px;
    border-color: transparent transparent transparent var(--color-accent-error);
    content: "";
    margin: auto;
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}
.results-list-ba-inner {
    width: 47%;
    position: relative;
}
.results-list-ba-inner::after {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    text-shadow: #fff 2px 0px, #fff -2px 0px,#fff 0px -2px, #fff 0px 2px,#fff 2px 2px , #fff -2px 2px,#fff 2px -2px, #fff -2px -2px,#fff 1px 2px,  #fff -1px 2px,#fff 1px -2px, #fff -1px -2px,#fff 2px 1px,  #fff -2px 1px,#fff 2px -1px, #fff -2px -1px;
    position: absolute;
    bottom: -0.6em;
    left: 0;
    right: 0;
}
.results-list-ba-inner.before::after {
    content: "BEFORE";
    color: #333;
}
.results-list-ba-inner.after::after {
    content: "AFTER";
    color: var(--color-accent-error);
}
.results-list-ba-image {
    background: #f2f2f2;
    border-radius: 10px;
    overflow: hidden;
    /* width: 140px; */
    height: 180px;
    position: relative;
}
.results-list-ba-image > img {
    height: 100%;
    max-width: initial;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.results-list-area {
    background: #333;
    color: #fff;
    display: inline-block;
    padding: 2px 5px;
}
.results-list-date {
    margin: 6px 0 0;
}

/* results-single
--------------------------------- */
.results-info {
    font-size: 1.2rem;
    margin: 0 0 20px;
}
.results-date {
    display: inline-block;
    margin-right: 1em;
}
a.results-area {
    background: #333;
    color: #fff;
    display: inline-block;
    padding: 1px 10px;
}
.results-ba {
    display: flex;
        justify-content: space-between;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    margin: 0 0 30px;
    position: relative;
}
.results-ba::before {
    border-style: solid;
    border-width: 24px 0 24px 20px;
    border-color: transparent transparent transparent var(--color-accent-error);
    content: "";
    margin: auto;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
}
.results-ba-inner {
    width: 47%;
    position: relative;
}
.results-ba-inner::after {
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: #fff 2px 0px, #fff -2px 0px,#fff 0px -2px, #fff 0px 2px,#fff 2px 2px , #fff -2px 2px,#fff 2px -2px, #fff -2px -2px,#fff 1px 2px,  #fff -1px 2px,#fff 1px -2px, #fff -1px -2px,#fff 2px 1px,  #fff -2px 1px,#fff 2px -1px, #fff -2px -1px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.results-ba-inner.before::after {
    content: "BEFORE";
    color: #333;
}
.results-ba-inner.after::after {
    content: "AFTER";
    color: var(--color-accent-error);
}
.results-ba-label {
    color: #fff;
    padding: 10px;
}
.before .results-ba-label {background: #333;}
.after .results-ba-label {background: var(--color-theme-primary);}
.results-ba-maker {
    font-size: 1.8rem;
    padding: 10px;
}
.results-ba-image {
    background: #f2f2f2;
    border-radius: 10px;
    display: flex;
        align-items: center;
        justify-content: center;
    overflow: hidden;
    position: relative;
}
@media all and (-ms-high-contrast: none){ .results-ba-image > img {width: 100%;} }/* IE */
.before .results-ba-image {}
.results-table {
    background: #ccc;
    border-collapse: separate;
    border-spacing: 0 1px;
    margin: 0 0 50px;
}
.results-table th,
.results-table td {
    padding: 12px 20px;
}
.results-table th {background: #f2f2f2;font-weight: 700;}
.results-table td {background: #fff;}
.results-warranty td {
    background: #fffafb;
}
.results-warranty li {
    background:#fff;
    border-radius: 3px;
    border: 1px solid;
    color:var(--color-accent-error);
    display: inline-block;
    margin: 0 0.2em;
    padding: 0 0.5em;
}

/* =============================================================
    post list
============================================================= */
/* post-list
--------------------------------- */
.post-list-box {
    border-bottom: 1px solid #ccc;
}
.post-list-box > a {
    display: flex;
        align-items: flex-start;
    padding: 12px 15px;
}
.post-list-date {
    font-size: 1.4rem;
    width: 140px;
}
.post-list-title {
    width: calc(100% - 140px);
}

/* prev next
--------------------------------- */
.prev-next {
    display: flex;
        justify-content: space-between;
    font-size: 1.2rem;
    line-height: 1.3;
    margin: 0 0 50px;
}
.prev-next > * {
    display: flex;
        align-items: center;
    position: relative;
}
.pn-prev,
.pn-next {
    background: linear-gradient(180deg, #f2f2f2, #f2f2f2 50%, #dad9d9 50%, #dad9d9 100%);
    border-radius: 10px;
    width: 38%;
}
.pn-prev {
    order: 1;
    padding: 10px 20px 10px 40px;
}
.pn-next {
    order: 3;
    padding: 10px 40px 10px 20px;
}
.pn-prev.non,
.pn-next.non {opacity: 0.2;}
.pn-prev:not(.non)::after,
.pn-next:not(.non)::after {
    border-right: 2px solid;
    border-top: 2px solid;
    content: "";
    margin: auto;
    height: 6px;
    width: 6px;
    position: absolute;
    top: 0;
    bottom: 0;
}
.pn-prev:not(.non)::after {
    left: 15px;
    transform: rotate(-135deg);
}
.pn-next:not(.non)::after {
    right: 15px;
    transform: rotate(45deg);
}
a.to-list {
    align-self: center;
    background: linear-gradient(to bottom, #002d7d 0%,#002d7d 50%,#001f57 51%,#001f57 100%);
    border-radius: 10px;
    color: #fff;
    justify-content: center;
    order: 2;
    padding: 12px 0;
    width: 20%;
}

/* Pagination
--------------------------------- */
.pagination {
    clear: both;
    padding: 30px 0 10px;
    position: relative;
    font-size: 1.4rem;
    text-align: center;
}
.pagination span, .pagination a {
    border-color: #e3e3e3 #cecece #b4b4b4 #d6d6d6;
    border-radius: 3px;
    color: #333;
    display: inline-block;
    text-decoration: none;
    margin: 0 4px;
    padding: 8px 18px;
    width: auto;
}
