.header-pc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

@media screen and (max-width: 1024px) {
    .header-pc {
        padding: 10px 15px;
    }
}

.header-right {
    display: flex
}

@media screen and (max-width:768px) {
    .header-right {
        display: none
    }

    .header-left {
        padding: 10px
    }

    .header-left img {
        width: 203px;
        height: auto;
        -webkit-backface-visibility: hidden
    }
}

.header-tell {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1em
}

.header-tell-sub {
    padding-left: 5px;
    font-weight: normal;
    font-size: 12px
}

.header-link,
.header-tell,
.header-search {
    padding: 0 20px;
    border-left: none;
    /* Removed redundant left border */
    display: flex;
    justify-content: center;
    align-items: center
}

@media screen and (max-width:1100px) {
    .header-tell {
        display: none
    }

    /* 中間サイズでの余白調整 */
    .header-link,
    .header-search,
    .translateWrap {
        padding: 0 10px;
    }

    .header-search-box input.search-window__input {
        width: 150px;
    }
}

@media screen and (max-width: 950px) {
    .header-pc {
        padding: 10px 0 10px 10px;
    }

    .header-right {
        gap: 5px;
    }

    .header-link,
    .header-search,
    .translateWrap {
        padding: 0 5px;
    }

    .header-comp,
    .header-shop {
        margin-left: 8px;
        padding-left: 10px;
        font-size: 11px;
    }

    .header-search-box {
        padding: 6px 10px;
    }

    .header-search-box input.search-window__input {
        width: 110px;
        font-size: 11px;
    }
}

.header-link {
    font-size: 12px
}

.header-comp,
.header-shop {
    font-family: 'Outfit', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 24px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.header-comp:hover,
.header-shop:hover {
    color: #e70a03;
}

.header-comp::before {
    content: '\f1ad';
    font-family: FontAwesome;
    color: #e70a03;
    font-size: 16px;
}

.header-shop::before {
    content: '\f290';
    font-family: FontAwesome;
    color: #e70a03;
    font-size: 16px;
}

.translateWrap {
    margin-left: 20px;
}

.translateWrap select {
    appearance: none;
    -webkit-appearance: none;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 6px 30px 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: #444;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M0 2 L4 6 L8 2' fill='none' stroke='%23888' stroke-width='1.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.translateWrap select:hover {
    border-color: #e70a03;
    background-color: #fff;
}

.header-search-box {
    background-color: #eee;
    padding: 8px 15px;
    border-radius: 20px;
    position: relative
}

.header-search-box input {
    font-size: 12px;
    background-color: #eee;
    border: 0
}

.header-search-box input.search-window__input {
    width: 200px
}

.header-search-box input.submit {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #dedede;
    color: #626262;
    padding: 0 15px;
    border-radius: 0 20px 20px 0;
    height: 100%
}

.gnav {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-family: 'Outfit', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-feature-settings: "palt" 1;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

@media screen and (max-width:768px) {
    .gnav {
        display: none
    }
}

.gnav>ul {
    display: flex;
    justify-content: space-between;
    position: relative;
    background: #fff
}

.gnav>ul>li {
    width: 100%
}

.gnav>ul>li:hover {
    background-color: #f2f2f2
}



.gnav>ul>li>a {
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.03em;
    display: flex;
    padding: 18px 24px;
    text-decoration: none;
    color: #222;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 600;
}

.gnav>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: #e70a03;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.gnav>ul>li:hover>a::after {
    transform: scaleX(1);
}

.gnav>ul>li:hover>a {
    color: #e70a03;
}

.gnav>ul>li:hover {
    background-color: rgba(231, 10, 3, 0.02);
}

/* 中間サイズでのナビゲーション調整：ベーススタイルの後に記述 */
@media screen and (max-width: 1100px) {
    .gnav>ul>li>a {
        font-size: 14px;
        padding: 12px 0;
    }
}

@media screen and (max-width: 950px) {
    .gnav>ul>li>a {
        font-size: 12px;
        letter-spacing: -0.02em;
        padding: 10px 0;
    }

    .gnav>ul>li i {
        margin: 0 2px;
        font-size: 12px;
    }
}

@media screen and (max-width: 850px) {
    .gnav>ul>li>a {
        font-size: 11px;
        letter-spacing: -0.05em;
    }
}

.gnav ul li a span {
    display: inline-block;
    border-right: none;
    /* Removed vertical divider */
}

.gnav li .gnav-submenu {
    width: 100%;
    padding: 20px;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    border-top: 1px solid #bebebe;
    background-color: #ebebeb;
    visibility: hidden;
    opacity: 0;
    z-index: 998;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: opacity .1s ease, visibility .1s;
    transition-delay: .1s
}

.gnav li:hover .gnav-submenu {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s
}

.gnav>ul>li:first-child {
    width: 80px
}

.gnav>ul>li:not(:first-child) {
    flex: 1
}

.gnav>ul>li i {
    color: #e70a03;
    margin: 0 5px;
    font-size: 14px;
}

.gnav>ul>li i:before {
    position: relative;
}

.gnav-submenu-list,
.gnav-submenu-ttl {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto
}

.gnav-submenu-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.gnav-submenu-list li {
    width: 25%
}

.gnav-submenu-list li a {
    position: relative;
    display: flex;
    align-items: center;
    flex-basis: auto;
    padding: 15px;
    margin: 3px;
    border-radius: 3px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    font-size: 15px;
    text-align: left;
    color: #333
}

.gnav-submenu-list li a:after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 10px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #e70a03;
    border-right: 2px solid #e70a03;
    transform: rotate(45deg)
}

.gnav-submenu-list li a:hover {
    opacity: .6;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1)
}

.gnav-submenu-list li a.gnav-icon {
    padding-left: 55px;
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 38px auto
}

.genre1-icon {
    background-image: url(../img/megamenu_product_img01.png)
}

.genre2-icon {
    background-image: url(../img/megamenu_product_img02.png)
}

.genre3-icon {
    background-image: url(../img/megamenu_product_img03.png)
}

.genre4-icon {
    background-image: url(../img/megamenu_product_img04.png)
}

.genre5-icon {
    background-image: url(../img/megamenu_product_img05.png)
}

.genre6-icon {
    background-image: url(../img/megamenu_product_img06.png)
}

.genre7-icon {
    background-image: url(../img/megamenu_product_img07.png)
}

.genre8-icon {
    background-image: url(../img/megamenu_product_img08.png)
}

.genre9-icon {
    background-image: url(../img/megamenu_product_img09.png)
}

.genre10-icon {
    background-image: url(../img/megamenu_product_img10.png)
}

.genre11-icon {
    background-image: url(../img/megamenu_product_img11.png)
}

.case1-icon {
    background-image: url(../img/case-icon01.png)
}

.case2-icon {
    background-image: url(../img/case-icon02.png)
}

.case3-icon {
    background-image: url(../img/case-icon03.png)
}

.case4-icon {
    background-image: url(../img/case-icon04.png)
}

.case5-icon {
    background-image: url(../img/case-icon05.png)
}

.case6-icon {
    background-image: url(../img/case-icon06.png)
}

.case7-icon {
    background-image: url(../img/case-icon07.png)
}

.case8-icon {
    background-image: url(../img/case-icon08.png)
}

.case9-icon {
    background-image: url(../img/case-icon09.png)
}

.support1-icon {
    background-image: url(../img/megamenu_support_img01.png)
}

.support2-icon {
    background-image: url(../img/megamenu_support_img02.png)
}

.support3-icon {
    background-image: url(../img/megamenu_support_img03.png)
}

.support4-icon {
    background-image: url(../img/megamenu_support_img04.png)
}

.support5-icon {
    background-image: url(../img/megamenu_support_img05.png)
}

.gnav-active {
    background-color: transparent;
    /* Simple transparent background for active */
}

.gnav-active>a {
    color: #e70a03
}

.gnav-submenu-ttl {
    width: 100%;
    max-width: 1400px;
    margin: 20px auto 10px auto;
    padding: 0 10px;
    font-size: 20px;
    color: #4e4e4e;
    font-weight: bold;
    text-align: left;
    box-sizing: border-box
}

.gnav-submenu-ttl span {
    font-size: 12px;
    font-weight: normal
}

.gnav-submenu-ttl i {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    color: #afafaf
}

.gnav-submenu-allpages {
    border-top: #dbdbdb 1px solid;
    margin-top: 20px;
    padding-top: 20px;
    width: auto
}

.gnav-submenu-allpages i {
    margin-right: 5px
}

.gnav-submenu-allpages a {
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: #e70a03
}

.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    box-shadow: 0 0 10px -6px rgba(0, 0, 0, 0.4)
}

.is-fixed>ul>li>a {
    padding: 15px 0
}

.body-fixed {
    padding-top: 60px
}

@media screen and (max-width:768px) {
    .body-fixed {
        padding-top: 0
    }
}

.gg-add {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid;
    transform: scale(var(--ggs, 1));
    border-radius: 22px
}

.gg-add::after,
.gg-add::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 2px;
    background: currentColor;
    border-radius: 5px;
    top: 8px;
    left: 4px
}

.gg-add::after {
    width: 2px;
    height: 10px;
    top: 4px;
    left: 8px
}

.gg-user {
    display: block;
    transform: scale(var(--ggs, 1));
    box-sizing: border-box;
    width: 12px;
    height: 18px
}

.gg-user::after,
.gg-user::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    border: 2px solid
}

.gg-user::before {
    width: 8px;
    height: 8px;
    border-radius: 30px;
    top: 0;
    left: 2px
}

.gg-user::after {
    width: 12px;
    height: 9px;
    border-bottom: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    top: 9px
}

.gg-layout-grid {
    transform: scale(var(--ggs, 1))
}

.gg-layout-grid,
.gg-layout-grid::after,
.gg-layout-grid::before {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 10px;
    height: 10px
}

.gg-layout-grid::after,
.gg-layout-grid::before {
    content: "";
    position: absolute;
    height: 4px;
    border-left: 4px solid;
    border-right: 4px solid
}

.gg-layout-grid::before {
    top: 0
}

.gg-layout-grid::after {
    bottom: 0
}

.gg-arrowB {
    position: relative
}

.gg-arrowB:after {
    position: absolute;
    top: -5px;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: -15px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #e70a03;
    border-right: 2px solid #e70a03;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}

.hamburger {
    display: none;
    position: relative;
    z-index: 3;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-align: center;
    border-left: 1px solid #dbdbdb;
    background-color: #5a5a5a;
    color: #fff
}

.hamburger div {
    position: absolute;
    bottom: 5px;
    left: 50%;
    font-size: 7px;
    font-weight: bold;
    transform: translateX(-50%)
}

@media screen and (max-width:768px) {
    .hamburger {
        display: block
    }

    header {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: auto;
        z-index: 97;
        background: #fff
    }

    .header-pc {
        padding: 0
    }
}

.hamburger span {
    display: block;
    position: absolute;
    width: 28px;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    transition: .3s ease-in-out
}

.hamburger span:nth-child(1) {
    top: 16px
}

.hamburger span:nth-child(2) {
    top: 24px
}

.hamburger span:nth-child(3) {
    top: 32px
}

.hamburger.active span:nth-child(1) {
    top: 25px;
    left: 18px;
    background: #fff;
    transform: rotate(-45deg)
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 25px;
    left: 18px;
    background: #fff;
    transform: rotate(45deg)
}

.gnav-sp {
    position: absolute;
    z-index: 2;
    top: calc(100% - 1px);
    left: 0;
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: opacity .3s ease, visibility .3s ease;
    visibility: hidden;
    display: none
}

@media screen and (max-width:768px) {
    .gnav-sp {
        display: block
    }
}

.gnav-sp ul {
    margin: 0;
    padding: 0;
    width: 100%;
    background: #5a5a5a
}

.gnav-sp ul li {
    list-style-type: none;
    width: 100%;
    border: 1px solid #6d6d6d
}

.gnav-sp ul li:last-child {
    padding-bottom: 0
}

.gnav-sp ul li a {
    display: block;
    font-size: 1.4em;
    color: #fff;
    padding: 1.2em;
    font-weight: bold;
    text-align: left;
    text-decoration: none;
    position: relative
}

.gnav-sp ul li a:hover {
    background-color: #3e3e3e
}

.gnav-sp ul li a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg)
}

.gnav-sp-bg {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity .3s ease, visibility .3s ease
}

.gnav-sp.active,
.gnav-sp-bg.active {
    opacity: 1;
    visibility: visible
}

.index-itemlist {
    width: 100%;
    margin: 0 auto
}

.index-itemlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.index-itemlist li {
    width: 33.33%
}

.index-itemlist li a {
    color: #333;
    position: relative;
    display: flex;
    align-items: center;
    flex-basis: auto;
    padding: 20px;
    margin: 3px;
    border-radius: 3px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: left
}

@media screen and (max-width:768px) {
    .index-itemlist {
        display: block
    }

    .index-itemlist li {
        width: 100%
    }
}

.index-itemlist li a:after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 15px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #e70a03;
    border-right: 2px solid #e70a03;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.index-itemlist li a:hover {
    opacity: .6;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1)
}

.index-itemlist li a.gnav-icon {
    padding-left: 70px;
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 45px auto
}

.genre-select {
    width: 100%
}

.genre-select>li {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 3px;
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    background-color: #efefed
}

.genre-select>li>a {
    flex-grow: 1;
    font-size: 18px;
    font-weight: bold;
    border-right: 1px solid #dbdbdb;
    padding: 10px 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #333
}

.genre-select>li>a:hover {
    opacity: .7
}

.genre-select>li>a span {
    display: block;
    width: 100%;
    padding: 3px 10px;
    border-radius: 4px;
    background-color: #e70a03;
    font-size: 14px;
    color: #fff;
    text-align: center
}

.genre-select>li>ul {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    padding: 25px 15px;
    border-left: 1px solid #fafafa
}

.genre-select>li>ul>li {
    width: 50%
}

.genre-select li li a {
    position: relative;
    display: block;
    flex-basis: auto;
    padding: 25px 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    margin: 5px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #dbdbdb;
    color: #333
}

.genre-select li li a:after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 13px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #e70a03;
    border-right: 2px solid #e70a03;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .3s
}

.genre-select li li a:hover {
    opacity: .8;
    background-color: #ffefef
}

.genre-select li li a:hover:after {
    right: 8px
}

.genre-select li li a.genre-select-ico {
    padding-left: 60px;
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 42px auto
}

@media screen and (max-width:768px) {
    .genre-select>li {
        display: block;
        width: 100%;
        padding-right: 0
    }

    .genre-select>li>a {
        margin-right: 0;
        font-weight: bold;
        border-right: 0 solid #e0e0e0;
        padding-top: 20px
    }

    .genre-select>li>a span {
        display: none
    }

    .genre-select>li>ul {
        width: 100%;
        display: block
    }

    .genre-select>li>ul>li {
        width: 100%
    }

    .genre-select li li a {
        padding: 25px;
        margin: 0 0 5px 0
    }
}

.cate-alcoholchecker {
    background-image: url(../img/genre-ico-alcohol.png)
}

.cate-microscope {
    background-image: url(../img/genre-ico-microscope.png)
}

.cate-micro-radiotype {
    background-image: url(../img/genre-ico-micro-radiotype.png)
}

.cate-micro-cabletype {
    background-image: url(../img/genre-ico-micro-cabletype.png)
}

.cate-micro-mobile {
    background-image: url(../img/genre-ico-micro-mobile.png)
}

.cate-micro-adapter {
    background-image: url(../img/genre-ico-micro-adapter.png)
}

.cate-micro-others {
    background-image: url(../img/genre-ico-micro-others.png)
}

.cate-flexiblescope {
    background-image: url(../img/genre-ico-flexiblescope.png)
}

.cate-flexible {
    background-image: url(../img/genre-ico-flexible.png)
}

.cate-flexi-mobile {
    background-image: url(../img/genre-ico-flexi-mobile.png)
}

.cate-borescope {
    background-image: url(../img/genre-ico-borescope.png)
}

.cate-option-cable {
    background-image: url(../img/genre-ico-option-cable.png)
}

.cate-camera {
    background-image: url(../img/genre-ico-camera.png)
}

.cate-intube-camera {
    background-image: url(../img/genre-ico-intube-camera.png)
}

.cate-pole-camera {
    background-image: url(../img/genre-ico-pole-camera.png)
}

.cate-cmount-camera {
    background-image: url(../img/genre-ico-cmount-camera.png)
}

.cate-telescope-camera {
    background-image: url(../img/genre-ico-telescope-camera.png)
}

.cate-magnifier {
    background-image: url(../img/genre-ico-magnifier.png)
}

.cate-magnifier_d {
    background-image: url(../img/genre-ico-magnifier_d.png)
}

.cate-leds {
    background-image: url(../img/genre-ico-leds.png)
}

.cate-leds_d {
    background-image: url(../img/genre-ico-leds_d.png)
}

.cate-beauty {
    background-image: url(../img/genre-ico-beauty.png)
}

.cate-micro-blood {
    background-image: url(../img/genre-ico-micro-blood.png)
}

.cate-micro-skin {
    background-image: url(../img/genre-ico-micro-skin.png)
}

.cate-counseling {
    background-image: url(../img/genre-ico-counseling.png)
}

.cate-skin-care {
    background-image: url(../img/genre-ico-skin-care.png)
}

.cate-bh-software {
    background-image: url(../img/genre-ico-bh-software.png)
}

.cate-software {
    background-image: url(../img/genre-ico-software.png)
}

.cate-workout {
    background-image: url(../img/genre-ico-workout.png)
}

.cate-supply {
    background-image: url(../img/genre-ico-supply.png)
}

.cate-mouse-keyboard {
    background-image: url(../img/genre-ico-mouse-keyboard.png)
}

.cate-network {
    background-image: url(../img/genre-ico-network.png)
}

.cate-webcamera {
    background-image: url(../img/genre-ico-webcamera.png)
}

.cate-usb {
    background-image: url(../img/genre-ico-usb.png)
}

.cate-hdd {
    background-image: url(../img/genre-ico-hdd.png)
}

.cate-mobile {
    background-image: url(../img/genre-ico-mobile.png)
}

.cate-mobile-battery {
    background-image: url(../img/genre-ico-mobile-battery.png)
}

.cate-earphone {
    background-image: url(../img/genre-ico-earphone.png)
}

.cate-cable {
    background-image: url(../img/genre-ico-cable.png)
}

.cate-stand {
    background-image: url(../img/genre-ico-stand.png)
}

.cate-seasonal {
    background-image: url(../img/genre-ico-seasonal.png)
}

.cate-moist {
    background-image: url(../img/genre-ico-moist.png)
}

.cate-fan {
    background-image: url(../img/genre-ico-fan.png)
}

.cate-aircleaner {
    background-image: url(../img/genre-ico-aircleaner.png)
}

.cate-goods {
    background-image: url(../img/genre-ico-goods.png)
}

.cate-life {
    background-image: url(../img/genre-ico-life.png)
}

.cate-travel {
    background-image: url(../img/genre-ico-travel.png)
}

.cate-battery {
    background-image: url(../img/genre-ico-battery.png)
}

.cate-elcigarette {
    background-image: url(../img/genre-ico-elcigarette.png)
}

.cate-iot {
    background-image: url(../img/genre-ico-iot.png)
}

.cate-car {
    background-image: url(../img/genre-ico-car.png)
}

.cate-network-camera {
    background-image: url(../img/genre-ico-network-camera.png)
}

.cate-disaster-prevention {
    background-image: url(../img/genre-ico-disaster-prevention.png)
}

.cate-pcstand {
    background-image: url(../img/genre-ico-pcstand.png)
}

.cate-pcaccessory {
    background-image: url(../img/genre-ico-pcaccessory.png)
}

.cate-idea {
    background-image: url(../img/genre-ico-idea.png)
}

.cate-co2 {
    background-image: url(../img/genre-ico-co2.png)
}

.cate-handcream {
    background-image: url(../img/genre-ico-handcream.png)
}

.lineUpWraps ul {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap
}

.lineUpWraps ul li {
    width: 32.2%;
    margin-right: 1.6%;
    margin-bottom: 10px;
    font-size: 12px
}

.lineUpWraps ul li:nth-child(3n) {
    margin-right: 0
}

.lineUpWraps ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 25px;
    font-size: 16px;
    font-weight: bold;
    color: #1f1f1f;
    display: block;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 8px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden
}

.lineUpWraps ul li a.cate-ico {
    padding-left: 70px;
    background-position: 15px center;
    background-repeat: no-repeat;
    background-size: 45px 45px
}

@media only screen and (max-width:768px) {
    .lineUpWraps ul li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0
    }

    .lineUpWraps ul li p {
        display: none
    }
}

.lineUpWraps ul li a:hover {
    opacity: .7;
    box-shadow: -1px -1px 0 rgba(0, 0, 0, 0.2)
}

.lineUpWraps ul li a:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 200px;
    background-color: #e70a03
}

.lineUpWraps ul li a:after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 8px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .3s
}

.mainSliderSP {
    height: auto
}

.mainVi img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.makuake_bnr {
    width: 100%
}

.clear:after {
    clear: both;
    content: '';
    display: block
}

.item_right {
    float: right;
    padding-left: 20px
}

.item_left {
    float: left;
    padding-right: 20px
}

.view2 img {
    width: 100%;
    padding-top: 20px
}

section.pb20 h5,
section.pb30 h5 {
    margin: 40px 0 20px 0
}

section.pb20 h6,
section.pb30 h6 {
    margin: 40px 0 20px 0
}

section.pb20 h6,
section.pb30 h6 img {
    margin: 0 0 0 -10px
}

section.pb20 p,
section.pb30 p {
    margin: 20px 0
}

.video {
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    position: relative
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.secondtitle:nth-of-type(n+1) {
    margin-top: 20px
}

.movie-youtube {
    position: relative;
    padding-bottom: 56.25%;
    height: 0
}

.movie-youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.movie-wrapper {
    width: 600px;
    max-width: 100%
}

.imgwide {
    max-width: 740px;
    margin: 0 auto
}

.imgwide img {
    padding-top: 0;
    width: 100%;
    height: auto
}

.sp-tel {
    display: none !important
}

@media screen and (max-width:768px) {
    .sp-tel {
        display: inline !important;
        text-align: center
    }
}

.confeTable tr:nth-child(even),
.qaSection tr:nth-child(even) {
    background: #f7f8f9
}

.sinterview {
    font-size: 1.4rem
}

.sinterview img {
    width: 100%
}

.sinterview_comment {
    line-height: 1.5em;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    margin-top: 20px
}

.sinterview_vol {
    text-align: right;
    font-weight: bold;
    padding: 20px 0
}

.sinterview_profile {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.sinterview h3 {
    font-size: 3.0rem;
    font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    line-height: 1.2;
    margin: 70px 0 20px 0;
    color: #8d7850;
    border-bottom: 0
}

.sinterview h3:first-child {
    font-size: 3.0rem;
    font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    line-height: 1.2;
    margin: 20px 0 20px 0;
    color: #8d7850;
    border-bottom: 0
}

.n_interview {
    font-size: 1.4rem
}

.n_interview img {
    width: 100%
}

.n_interview_img p {
    text-align: center;
    font-size: .9em;
    padding-left: 2em
}

.n_interview h3 {
    font-size: 2.5rem;
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
    line-height: 1.2;
    margin: 4em 0 .5em;
    color: #8d7850;
    border-bottom: 0
}

.n_interview h3:first-child {
    font-size: 2.5rem;
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
    line-height: 1.2;
    margin: 20px 0 20px 0;
    color: #8d7850;
    border-bottom: 0
}

.n_interview_q {
    width: 100%;
    margin: 40px 0 20px 0 !important;
    padding: 0;
    color: #8d7850;
    font-size: 1.6rem
}

.n_interview_a {
    width: 100%;
    margin: 0 0 40px 0;
    padding: 0;
    font-size: 1.6rem
}

.n_interview_img {
    float: right
}

.n_interview .n_interview_img img {
    max-width: 100%;
    height: auto;
    padding-left: 2em
}

.n_interview_img .imgsize {
    width: 348px;
    height: auto;
    padding-left: 2em
}

.n_interview_matome {
    margin: 5em 0 0;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #232323;
    padding: 40px;
    background-color: #f8f8f8;
    font-size: 15px !important;
    line-height: 1.8em;
    clear: both
}

@media(max-width:768px) {
    .n_interview {
        font-size: 1.2rem
    }
}

@media(max-width:768px) {
    .n_interview_q {
        width: 100%;
        font-size: 1.2rem;
        margin: 10px 0 20px !important
    }
}

@media(max-width:768px) {
    .n_interview_a {
        width: 100%;
        font-size: 1.2rem;
        line-height: 1.7
    }
}

@media(max-width:768px) {
    .n_interview_img_box {
        display: block
    }
}

@media(max-width:768px) {
    .n_interview h3 {
        font-size: 1.4rem;
        margin: .5em 0 .5em;
        line-height: 1.5
    }
}

@media(max-width:768px) {
    .n_interview h3:first-child {
        font-size: 1.4rem;
        margin: .5em 0 .5em;
        line-height: 1.5
    }
}

@media(max-width:768px) {
    .n_interview .n_interview_img img {
        width: 100%;
        height: auto;
        padding: unset
    }
}

@media(max-width:768px) {
    .n_interview_img .imgsize {
        width: 100%;
        height: auto;
        padding-left: 0;
        margin: 10px 0;
    }
}

@media(max-width:768px) {
    .n_interview_img p {
        text-align: center;
        font-size: .8em;
        padding-left: 0;
        padding-bottom: 1em
    }
}

.sinterview_shop-info {
    margin-right: 30px;
    width: 420px;
    line-height: 2.2em;
    padding: 20px 10px 0 50px;
    margin-top: 10px;
    background-color: #f6f6ef
}

.sinterview_shop-info_k {
    margin-right: 30px;
    width: 420px;
    line-height: 2.2em;
    padding: 55px 10px 0 50px;
    margin-top: 10px;
    background-color: #f6f6ef
}

.sinterview_shop-info2 {
    width: 480px;
    padding: 10px 0 0 80px;
    margin-top: 10px;
    background-color: #f6f6ef
}

.sinterview_shop-info3 {
    width: 480px;
    padding: 20px 0 20px 80px;
    margin-top: 10px;
    background-color: #f6f6ef;
    line-height: 1.1em
}

.sinterview_shop-name {
    color: #333
}

.sinterview_shop-txt {
    color: #333;
    margin: 4px 0
}

.sinterview_shop-img {
    margin: 0 0 0 10px;
    width: 220px;
    height: auto
}

.sinterview_shop-data tr {
    color: #333;
    border-bottom: 0;
    font-size: 12px;
    padding: 0
}

.sinterview_shop-data {
    color: #333;
    border-bottom: 0;
    font-size: 12px
}

.sinterview_shop-data th {
    color: #333;
    border-bottom: 0;
    font-size: 12px;
    padding: 0
}

.sinterview_shop-data td {
    color: #333;
    padding-left: 50px;
    border-bottom: 0;
    font-size: 12px;
    padding: 0
}

.sinterview_list {
    color: #333;
    width: 100%;
    position: relative
}

.sinterview_list .sinterview_answer {
    font-weight: 100;
    color: #333;
    width: 100%;
    position: relative
}

.sinterview_list dd {
    margin: 0 0 20px 0 !important
}

.sinterview_q {
    width: 100%;
    margin: 40px 0 20px 0 !important;
    padding: 0;
    color: #8d7850;
    font-weight: bold
}

.sinterview_a {
    width: 100%;
    margin: 0 0 40px 0;
    padding: 0
}

.sinterview_list p {
    line-height: 1.8
}

.sinterview_img {
    float: right
}

.sinterview_img img {
    width: 100%;
    height: auto;
    padding-left: 2em
}

.sinterview_img .imgsize {
    width: 348px;
    height: auto;
    padding-left: 2em
}

.sinterview_img p {
    text-align: center;
    font-size: .9em;
    padding-left: 2em
}

.sinterview_img_box {
    height: auto
}

.sinterview_img_s img {
    width: 100%;
    height: auto
}

.sinterview_item_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.sinterview_item {
    padding: 10px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.sinterview_item-title {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
    width: 100%;
    margin: 50px 0 10px 0;
    font-weight: bold;
    font-size: 14px !important;
    background-color: #f6f6ef;
    color: #333;
    padding: 10px
}

.sinterview_item-img {
    width: 200px;
    margin: 0 20px 0 0
}

.sinterview_item-img img {
    width: 100%;
    height: auto
}

.sinterview_item-name {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
    width: 250px;
    font-weight: bold;
    margin: 0 0 20px 0
}

.sinterview_item-txt {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 10px 0
}

.sinterview_matome {
    margin: 30px 0 0 0;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #232323;
    padding: 40px;
    background-color: #f8f8f8;
    font-size: 15px !important;
    line-height: 1.8em;
    clear: both
}

.sinterview_square_btn {
    display: inline-block;
    padding: .5em 1em;
    text-decoration: none;
    background: #cebc66;
    color: #FFF;
    width: 200px;
    text-align: center
}

.sinterview_square_btn:active {
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    border-bottom: 0;
    color: #FFF !important
}

.sinterview_point_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 30px 0 40px 0;
    padding: 20px;
    position: relative;
    border: double 3px #cebc66
}

.sinterview_point_box .img1 {
    width: 80px;
    height: 57px;
    margin: 5px 10px 5px 0
}

.sinterview_point_box p {
    padding-top: 10px;
    font-weight: bold;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333
}

.sinterview_point_box .box-title {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: absolute;
    display: inline-block;
    top: -10px;
    left: 420px;
    padding: 0 9px;
    line-height: 1;
    background: #FFF;
    color: #cebc66;
    font-weight: bold
}

.sinterview_img_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.sinterview_link {
    margin-top: 60px;
    margin-bottom: 100px
}

.sinterview_link a:hover img {
    opacity: .7;
    -webkit-filter: sinterview_link(opacity=70);
    filter: sinterview_link(opacity=70);
    -ms-filter: "sinterview_link(opacity=70)"
}

.sinterview_impressions {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1em 1em;
    margin: 3em 0;
    border: solid 1px silver
}

.sinterview_impressions p {
    padding: 10px 10px
}

.sinterview_impressions img {
    width: 100px;
    height: 100px
}

.under {
    border-bottom: dotted 2px #63d7b8
}

.sinterview_introduction {
    margin-top: 40px;
    font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
    padding: 40px 60px 40px;
    border: 1px solid #5a7b79;
    color: #324544
}

.sinterview_introduction .item_left_area {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.sinterview_introduction .ttl_area {
    color: #324544
}

.sinterview_introduction .main_ttl {
    line-height: 1.2em;
    border-bottom: 1px solid #5a7b79;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 3px
}

.sinterview_introduction .sub_ttl {
    margin-top: 10px;
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: 1px
}

.sinterview_introduction .point_area {
    font-weight: 1000;
    line-height: 2em;
    font-size: 1.2em;
    margin-right: 200px;
    padding: 20px 30px;
    background: #f8f8f8;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.sinterview_introduction_link {
    margin-top: 20px;
    text-align: center
}

.sinterview_square_anm {
    display: inline-block;
    font-weight: 1000;
    padding: 1em 9.5em;
    text-decoration: none;
    color: #5a7b79;
    border: solid 2px #5a7b79;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s
}

.sinterview_square_anm:hover {
    background: #5a7b79;
    color: white
}

@media(max-width:768px) {
    .sinterview {
        font-size: 1.2rem
    }
}

@media(max-width:768px) {
    .sinterview_img_box {
        display: block
    }
}

@media(max-width:768px) {
    .sinterview h3 {
        font-size: 1.8rem
    }
}

@media(max-width:768px) {
    .sinterview h3:first-child {
        font-size: 1.8rem
    }
}

@media(max-width:768px) {
    .sinterview_point_box {
        width: 100%
    }
}

@media(max-width:768px) {
    .sinterview_point_box .box-title {
        left: 150px
    }
}

@media(max-width:768px) {
    .sinterview_img img {
        width: 100vw
    }
}

@media(max-width:768px) {
    .sinterview_img .imgsize {
        width: 100vw
    }
}

@media(max-width:768px) {
    .sinterview_img p {
        text-align: center;
        font-size: .8em;
        padding-left: 0;
        padding-bottom: 1em
    }
}

.item_spec {
    margin-bottom: 30px
}

.item_spec .spec {
    margin: 0 0 10px
}

.item_spec .spec caption {
    text-align: left;
    font-size: 1.3em;
    padding: 0 0 5px 0
}

.item_spec .spec th {
    text-align: center;
    border-style: solid;
    border-width: 1px;
    border-color: #ccc;
    background-color: rgba(228, 228, 228, 1.00)
}

.item_spec .spec td {
    border-style: solid;
    padding-left: 10px;
    border-width: 1px;
    border-color: #ccc
}

.item_spec .spec td a {
    color: #2b4693
}

.smolialight {
    margin: 0 0 30px
}

.smolialight .title {
    margin-top: 50px;
    overflow: hidden
}

.smolialight .title .title_image {
    padding-right: 20px;
    padding-left: 10px;
    float: left
}

.smolialight .box1 {
    overflow: hidden;
    width: 70%;
    font-size: 2.2rem;
    padding: .6em .1em .1em 1.2em;
    font-weight: bold;
    color: #FFF;
    background: #59d0c0;
    border-radius: 30px;
    margin-bottom: 10px
}

.smolialight .box2 {
    width: 100%;
    line-height: 45px;
    color: #202020;
    font-weight: bold;
    font-size: 3rem;
    padding-bottom: 30px
}

.smolialight .box2 p {
    padding-top: 30px;
    font-weight: bold
}

.smolialight .text {
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between
}

.smolialight .box3 {
    color: #202020;
    font-size: 1.2em
}

.smolialight .img {
    text-align: center
}

.smolialight .inner {
    width: 100%;
    padding-bottom: 30px
}

.smolialight .box4 {
    padding-top: 30px;
    text-align: center;
    line-height: 25px;
    color: #202020;
    font-size: 1.2rem
}

.smolia_item {
    border-top: solid 1px #d4d4d4;
    margin: 40px 0 0 0;
    padding: 40px 0 0 0;
    display: flex;
    flex-wrap: wrap
}

.smolia_item-title {
    padding-top: 40px;
    width: 100%;
    margin: 50px 0 20px;
    font-weight: bold;
    font-size: 14px !important;
    background-color: #f2f2f2;
    color: #2e2e2e;
    padding: 10px
}

.smolia_item-img img {
    width: 200px;
    height: auto
}

.smolia_item-txt {
    font-size: 1.8em;
    margin-left: 10px
}

.smolia_item a {
    margin-left: 10px
}

.smolia_item-data .square_btn {
    font-size: 1.6em;
    display: inline-block;
    padding: .8em 5em;
    text-decoration: none;
    color: #fff;
    background: #d2d2d2;
    border-radius: 3px;
    transition: .4s;
    border: solid 2px #d2d2d2
}

.smolia_item-data .square_btn:hover {
    background: #fff;
    color: #d2d2d2;
    border: solid 2px #d2d2d2
}

.supplylist p {
    font-size: 2.5rem;
    text-align: center;
    padding: 50px
}

.supplylist a {
    text-decoration: underline;
    color: #e70a03
}

.supplylist a:hover {
    color: #e18787
}

.post-password-form p {
    font-size: 2.0rem;
    text-align: center;
    padding: 50px
}

@media only screen and (max-width:768px) {
    #breadcrumb .inner {
        overflow: hidden
    }
}

.product_category .lineUpWrap ul li a .aInner .img._supply03 {
    background: url(/wp-content/themes/3rrrbtob/img/img_product_sapurai01.jpg) no-repeat center left
}

@media only screen and (max-width:768px) {
    .product_category .lineUpWrap ul li a .aInner .img._supply03 {
        background: url(/wp-content/themes/3rrrbtob/img/img_product_sapurai01.jpg) no-repeat 50% 50%;
        background-size: 48px
    }
}

.product_category .lineUpWrap ul li a .aInner .img._supply04 {
    background: url(/wp-content/themes/3rrrbtob/img/img_product_sapurai02.jpg) no-repeat center left
}

@media only screen and (max-width:768px) {
    .product_category .lineUpWrap ul li a .aInner .img._supply04 {
        background: url(/wp-content/themes/3rrrbtob/img/img_product_sapurai02.jpg) no-repeat 50% 50%;
        background-size: 48px
    }
}

.product_category .lineUpWrap ul li a .aInner .img._supply05 {
    background: url(/wp-content/themes/3rrrbtob/img/img_product_sapurai03.jpg) no-repeat center left
}

@media only screen and (max-width:768px) {
    .product_category .lineUpWrap ul li a .aInner .img._supply05 {
        background: url(/wp-content/themes/3rrrbtob/img/img_product_sapurai03.jpg) no-repeat 50% 50%;
        background-size: 48px
    }
}

.product_category .lineUpWrap ul li a .aInner .img._supply06 {
    background: url(/wp-content/themes/3rrrbtob/img/img_product_sapurai04.jpg) no-repeat center left
}

@media only screen and (max-width:768px) {
    .product_category .lineUpWrap ul li a .aInner .img._supply06 {
        background: url(/wp-content/themes/3rrrbtob/img/img_product_sapurai04.jpg) no-repeat 50% 50%;
        background-size: 48px
    }
}

.news .newsDetail .detailBox .ar {
    text-align: right
}

.news .newsDetail .news_center {
    text-align: center
}

.column {
    font-size: 1.4rem
}

.column .headTitle {
    padding: 5px 0;
    background-color: #ececec;
    background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, #f9f9f9), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, #f9f9f9), color-stop(.75, #f9f9f9), color-stop(.75, transparent), to(transparent));
    -webkit-background-size: 7px 7px
}

.column .headTitle .headTitle-Wrap {
    background-color: #fff;
    padding: 20px 0;
    font-size: 30px;
    font-family: "Sawarabi Mincho", 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho', 'serif';
    text-align: center
}

.column h1 {
    position: relative;
    border-bottom: 1px solid #000;
    background: #fff;
    color: #000;
    text-align: center;
    font-size: 24px;
    padding: 30px 20px 60px 20px;
    margin: 0 0 80px 0;
    background-image: url(/wp-content/themes/3rrrbtob/img/column-ttlbg.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    box-sizing: border-box
}

.column h1:before {
    content: "";
    position: absolute;
    bottom: -44px;
    left: 50%;
    margin-left: 0;
    border: 22px solid transparent;
    border-top: 22px solid #fff;
    z-index: 2
}

.column h1:after {
    position: absolute;
    border: 23px solid transparent;
    border-top-color: #000;
    border-bottom-width: 0;
    bottom: -24px;
    content: "";
    left: 50%;
    z-index: 1
}

.column h2 {
    text-align: center;
    margin: 70px 0 30px 0
}

.column h2 span {
    display: inline-block;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    padding: 5px 20px
}

.column h3 {
    font-size: 1.4em;
    font-weight: bold;
    margin: 30px 0 20px 0
}

.column p {
    margin: 30px 0
}

.pointBox {
    width: 80%;
    box-sizing: border-box;
    padding: 20px;
    margin: 0 auto;
    background-color: #e9f5fd;
    font-size: 2.2rem;
    font-weight: bold;
    color: darkblue
}

.pointBox li {
    margin: 10px 0;
    font-size: 1.6rem;
    font-weight: bold;
    color: #000
}

.table-line {
    border-collapse: collapse;
    width: 100%
}

.table-line th,
.table-line td {
    border: 1px solid #7a7a7a;
    padding: 5px
}

.contents-center {
    text-align: center
}

.contents-ft-cv {
    border-width: 8px;
    border-color: #ed1c23;
    border-style: solid;
    padding: 20px;
    margin: 40px 0;
    text-align: center
}

.contents-ft-cv h5 {
    margin-top: 25px;
    font-size: 2.2rem
}

.contents-ft-cv-btn {
    display: block;
    position: relative;
    border-radius: 4px;
    background-color: #ed1c23;
    color: #fff;
    padding: 10px;
    max-width: 80%;
    margin: 20px auto;
    font-weight: bold;
    z-index: 2
}

.contents-ft-nv {
    display: flex;
    flex-wrap: nowrap;
    border-top: solid 1px #e7e6e6;
    margin-top: 25px;
    padding-top: 25px
}

.contents-ft-nv li {
    width: 25%;
    font-size: 1.1rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    border-right: solid 1px #e7e6e6
}

@media(max-width:768px) {
    .contents-ft-nv li {
        font-size: .8rem
    }
}

.contents-ft-nv li:last-of-type {
    border-right: solid 0 #e7e6e6
}

.nv01 {
    background-image: url(/wp-content/themes/3rrrbtob/img/contents-ft-nv01.png)
}

.nv02 {
    background-image: url(/wp-content/themes/3rrrbtob/img/contents-ft-nv02.png)
}

.nv03 {
    background-image: url(/wp-content/themes/3rrrbtob/img/contents-ft-nv03.png)
}

.nv04 {
    background-image: url(/wp-content/themes/3rrrbtob/img/contents-ft-nv04.png)
}

.nv01,
.nv02,
.nv03,
.nv04 {
    background-repeat: no-repeat;
    background-position: center top;
    padding: 55px 10px 10px 10px
}

.btn06 {
    position: relative;
    text-decoration: none;
    display: block;
    background: #ed1c23;
    color: #fff;
    padding: 10px 40px 10px 30px;
    border-radius: 25px;
    text-align: center;
    outline: 0;
    transition: ease .2s
}

.btn06:hover {
    background: #f56065
}

.btnarrow1::after {
    content: '';
    position: absolute;
    top: 42%;
    right: 25px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: all .3s
}

.btnarrow1:hover::after {
    right: 15px
}

.flexbox {
    display: flex;
    flex-wrap: nowrap
}

.flexbox .pict {
    flex: 1
}

.flexbox .pict img {
    max-width: 100%;
    height: auto
}

.flexbox .texts {
    flex: 2;
    margin-right: 20px
}

.column-contents .center {
    text-align: center;
    margin: 40px 0
}

hr {
    border-top: 1px dashed #cacaca;
    margin: 40px 0
}

.lineup {
    margin: 30px 0 30px 0;
    line-height: 1.25;
    font-size: 1.2rem;
    overflow-x: scroll
}

.lineup table {
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    width: 1000px;
    table-layout: fixed
}

.lineup table tr {
    background-color: #fff;
    padding: .35em;
    border: 1px solid #eee
}

.lineup table tr:nth-child(even) {
    background-color: #fbfbfb
}

.lineup table th {
    text-align: center;
    font-weight: 700;
    padding: 20px 5px;
    border-right: 1px solid #fff
}

.lineup table td {
    padding: .25em;
    border-right: 1px solid #eee;
    text-align: center
}

.lineup table thead tr {
    background-color: #50535d;
    color: #fff
}

.lineup table tr:last-child {
    border: 0
}

.lineup table tbody th {
    background-color: #dededf;
    border-right: 1px solid #eee
}

.lineup td {
    position: relative;
}

/* 親の a に relative を指定して、基準にする */
.lineup td a {
    display: inline-block;
    position: relative;
}

/* メイン画像 */
.lineup-img {
    display: block;
    width: 150px;
    height: auto;
}

/* repair アイコンをメイン画像に重ねる */
.jp-repair-icon {
    position: absolute;
    top: -25px;
    right: -10px;
    width: 60px;
    height: auto;
    z-index: 2;
}

.lineup th.non {
    background-color: #fff;
    border-right: 0
}

.lineup .txt {
    text-align: left;
    font-size: 1.2em
}

.lineup .price {
    color: #000;
    font-weight: bold
}

.lineup .price span {
    font-size: .6em
}

.lineup .red_bk {
    background: #e81010
}

.lineup .red-txt {
    font-weight: bold;
    color: #e81010
}

.lineup .small-txt {
    font-size: .5em
}

.lineup .btn {
    background: #e81010;
    color: #fff;
    padding: .5em;
    border-radius: 6px;
    box-shadow: 0 3px 0 #ca2e2e;
    display: block;
    text-decoration: none;
    margin-top: 10px
}

.lineup .btn:hover {
    box-shadow: 0 0 0 #ca2e2e;
    background: #e34b4b;
    color: #fff;
    transition: .2s
}

.lineup table .btnarea td {
    padding: .2em .5em;
    border-right: 0
}

.lineup .lineup-img {
    padding: 0;
    width: 100%
}

.lineup a:hover img {
    opacity: .7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)"
}

@media only screen and (max-width:768px) {
    .lineup .wrap {
        overflow-x: scroll
    }
}

@media only screen and (max-width:768px) {
    .lineup {
        font-size: 1.2em
    }
}

@media only screen and (max-width:768px) {
    .lineup table {
        width: 800px
    }
}

@media only screen and (max-width:768px) {
    .telework-container {
        padding: 15px
    }
}

.telework-container h1 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin: 60px 0
}

@media only screen and (max-width:768px) {
    .telework-container h1 {
        font-size: 26px;
        font-weight: bold;
        margin: 20px 0
    }
}

.telework-container h2 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 10px
}

.telework-container h3 {
    font-size: 22px;
    font-weight: bold;
    margin: 60px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e70a03
}

.telework-pickup {
    padding: 20px;
    box-sizing: border-box;
    margin: 50px 0
}

.telework-pickup-image {
    margin-right: 20px
}

.telework-pickup ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%
}

@media only screen and (max-width:768px) {
    .telework-pickup ul {
        width: 100%
    }
}

.telework-pickup li {
    display: flex;
    flex-wrap: nowrap;
    flex: 1;
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
    margin-left: 5px
}

@media only screen and (max-width:768px) {
    .telework-pickup li {
        display: list-item;
        background-color: #fff;
        padding: 20px;
        box-sizing: border-box;
        margin-left: 5px
    }
}

.telework-pickup-image {
    min-width: 200px
}

.telework-pickup-txt {
    font-size: 14px
}

.telework-pickup-itemname {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px
}

ul.innernavi {
    background-color: #333;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between
}

@media only screen and (max-width:768px) {
    ul.innernavi {
        padding: 5px;
        box-sizing: border-box;
        display: block;
        justify-content: space-between
    }
}

ul.innernavi li {
    display: block;
    width: 24%
}

@media only screen and (max-width:768px) {
    ul.innernavi li {
        width: auto;
        margin: 8px
    }
}

ul.innernavi li a {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0, #e5e5e5 100%);
    background: -webkit-linear-gradient(top, #fff 0, #e5e5e5 100%);
    background: linear-gradient(to bottom, #fff 0, #e5e5e5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e5e5e5', GradientType=0);
    box-sizing: border-box
}

.telework-itemlist li {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: dotted 1px #c1c1c1;
    padding: 10px 10px 20px 10px;
    box-sizing: border-box;
    margin: 15px 0 15px
}

@media only screen and (max-width:768px) {
    .telework-itemlist li {
        display: block;
        align-items: center;
        width: 100%;
        border-bottom: dotted 1px #c1c1c1;
        padding: 10px 10px 20px 10px;
        box-sizing: border-box;
        margin: 15px 0 15px
    }
}

.telework-itemimage {
    margin-right: 20px
}

@media only screen and (max-width:768px) {
    .telework-itemimage {
        text-align: center
    }
}

@media only screen and (max-width:768px) {
    .telework-itemimage img {
        max-width: 50%;
        margin-bottom: 10px
    }
}

.telework-itemtxt {
    font-size: 14px
}

.telework-itemname {
    font-size: 18px;
    font-weight: bold
}

.telework-ctxt {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px
}

.telework-itemtxt {
    flex-wrap: wrap
}

.telework-itemtxt .telework-button {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap
}

.telework-itemlist .btn_U a {
    position: relative;
    display: inline-block;
    align-items: center;
    padding: 10px 30px;
    font-size: 13px;
    color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #1056a6;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .2);
    transition: .25s;
    margin-right: 10px
}

.telework-itemlist .btn_U a:hover {
    transform: translate3d(0, 1px, 0);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2)
}

.telework-itemlist .btn_S a {
    position: relative;
    display: inline-block;
    align-items: center;
    padding: 10px 30px;
    font-size: 13px;
    color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #e70a03;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .2);
    transition: .25s
}

.telework-itemlist .btn_S a:hover {
    transform: translate3d(0, 1px, 0);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2)
}

.telework-itemlist .alpha a:hover img {
    opacity: .7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)"
}

.antivirus2-title .h1Wrap {
    padding: 50px 0 10px 0
}

.antivirus2-title .h1Wrap h1 {
    text-align: center;
    position: relative;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 2%
}

.antivirus2_mainvisual {
    margin-bottom: 3%
}

.antivirus2-title .h1Wrap .sub {
    position: relative;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: .08em
}

.antivirus2-body {
    box-sizing: border-box;
    outline: 0
}

.antivirus2-container h3 {
    font-size: 22px;
    font-weight: bold;
    margin: 60px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e70a03
}

.antivirus2-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    padding: 0 .8%;
    margin-bottom: 20px
}

.antivirus2-itemlist {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.antivirus2-itemlist::after,
.antivirus2-itemlist::before {
    content: "";
    display: block;
    width: 23.5%;
    height: 0
}

.antivirus2-itemlist::before {
    order: 1
}

.antivirus2-itemlist>li {
    width: 23.5%;
    margin: 20px 0;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #eaeaea
}

.antivirus2-itemlist>li>*:not(:last-child) {
    min-height: 0
}

.antivirus2-itemlist>li>*:last-child {
    margin-top: auto
}

@media only screen and (max-width:1000px) {
    .antivirus2-itemlist>li {
        width: 32%
    }

    .antivirus2-itemlist::after,
    .antivirus2-itemlist::before {
        width: 32%
    }
}

@media only screen and (max-width:768px) {
    .antivirus2-itemlist>li {
        width: 100%
    }

    .antivirus2-title .h1Wrap h1 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 8%
    }

    .antivirus2-title .h1Wrap {
        padding: 40px 0 10px 0
    }

    .antivirus2_mainvisual {
        margin-bottom: 5%
    }

    .antivirus2-title .h1Wrap .sub {
        text-align: left;
        letter-spacing: 0
    }
}

.antivirus2-itemimage {
    width: 100%;
    border: 1px solid #eaeaea;
    margin-bottom: 10px
}

span.badge {
    background: #1056a6;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    display: inline-block;
    padding: 5px 5px;
    position: absolute;
    z-index: 1
}

.antivirus2-itemimage a:hover {
    opacity: .6;
    transition: .3s ease-in-out
}

.antivirus2-modelno {
    font-size: 13px;
    line-height: 14px;
    font-weight: 300
}

li .antivirus2-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 0
}

li .antivirus2-text {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 25px;
    margin-top: 0;
    flex-grow: 1
}

.vi-button {
    width: 100%;
    height: 47px;
    background: #e70a03;
    border-radius: 5px;
    text-align: center;
    line-height: 47px;
    margin-top: auto;
    margin-bottom: 0
}

.vi-button a {
    display: block;
    color: #fff;
    font-weight: bold
}

.vi-button:hover {
    opacity: .6;
    transition: .3s ease-in-out
}

@media only screen and (max-width:1179px) and (min-width:750px) {
    .container {
        width: 100%
    }

    .antivirus2_mainvisual {
        max-width: 100%
    }
}

.antivirus-pickup .btn_J {
    margin: 10px 0 0 0
}

.antivirus-pickup .btn_J a {
    position: relative;
    display: inline-block;
    align-items: center;
    padding: 10px 30px;
    font-size: 13px;
    color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #1056a6;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .2);
    transition: .25s
}

.antivirus-pickup .btn_J a:hover {
    transform: translate3d(0, 1px, 0);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2)
}

.antivirus-pickup .btn_J a span {
    position: relative;
    display: inline-block;
    padding-left: 50px
}

.antivirus-pickup .btn_J a span:before {
    pointer-events: none;
    position: absolute;
    display: block;
    content: "";
    z-index: 1;
    position: absolute;
    top: 7px;
    left: 0;
    display: inline-block;
    margin-right: 0;
    border: 3px solid transparent;
    border-color: #fff #fff transparent transparent;
    width: 0;
    height: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.antivirus-pickup {
    padding: 20px;
    box-sizing: border-box;
    margin: 30px 0
}

.antivirus-pickup-image {
    margin-right: 20px
}

.antivirus-pickup ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%
}

@media only screen and (max-width:768px) {
    .antivirus-pickup ul {
        width: 100%
    }
}

.antivirus-pickup li {
    display: flex;
    flex-wrap: nowrap;
    flex: 1;
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
    margin-left: 5px
}

@media only screen and (max-width:768px) {
    .antivirus-pickup li {
        display: list-item;
        background-color: #fff;
        padding: 20px;
        box-sizing: border-box;
        margin-left: 5px
    }
}

.antivirus-pickup-image {
    min-width: 200px
}

.antivirus-pickup-txt {
    font-size: 14px
}

.antivirus-pickup-itemname {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px
}

.telework-pickup-title {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 10px
}

.bousai-itemno {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: bold
}

.bousai-itemname {
    font-size: 18px;
    font-weight: bold
}

.headline2 {
    background-color: #f5db48;
    background-image: url("/wp-content/themes/3rrrbtob/img/bousai_stripe.png");
    background-repeat: repeat
}

.subsidy-wrap table {
    background-color: #fff
}

.subsidy-wrap table {
    border-collapse: collapse;
    margin: 0 auto;
    border: solid 5px #117dab;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3rem
}

.subsidy-wrap table th,
.subsidy-wrap table td {
    padding: 1%;
    border: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    vertical-align: middle
}

.subsidy-wrap table td:nth-child(1),
.subsidy-wrap table td:nth-child(5) {
    text-align: center
}

.subsidy-wrap .area {
    width: 7%
}

.subsidy-wrap .term {
    width: 18%
}

.subsidy-wrap .en_group {
    width: 10%
}

.subsidy-wrap .app_object {
    width: 30%
}

.subsidy-wrap .conclusion {
    width: 14%
}

.subsidy-wrap .website {
    width: 15%
}

.subsidy-wrap th {
    background-color: #f7f6f5;
    width: 10%;
    font-size: 1.2rem;
    text-align: center
}

.subsidy-wrap table tr {
    padding: 2% 0
}

.subsidy-wrap .btn a {
    background-color: #117dab;
    color: white;
    border-radius: 4px;
    padding: 3% 5%;
    text-align: center;
    display: block
}

.tmclp-main {
    background-color: #117dab;
    background-image: url(/wp-content/themes/3rrrbtob/img/tmc-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFF;
    padding: 80px 0;
    text-align: center
}

.tmclp-title {
    font-size: 1.4em;
    font-weight: bold;
    margin: 40px 0;
    text-align: center
}

.tmclp-title02 {
    margin: 40px 0;
    font-size: 1.4em;
    text-align: center;
    font-weight: bold;
    background-color: #117dab;
    color: #fff;
    padding: 20px 10px
}

.tmclp-column01 {
    background-color: #dce6ef;
    overflow: hidden;
    padding-bottom: 80px
}

.tmclp-column02 {
    background-color: #a0c7ea;
    overflow: hidden;
    padding: 80px 0
}

.tmclp-column03 {
    background-color: #e8f4ff;
    overflow: hidden;
    padding: 80px 0
}

.tmclp-thumbnail h3 {
    margin: 0 0 10px 0;
    font-weight: bold;
    font-size: 1.2em
}

.tmclp p {
    margin: 20px 0
}

@media screen and (min-width:480px) {
    .tmclp-thumbnail {
        display: flex
    }

    .tmclp-thumbnail div {
        width: 33.333%;
        padding: 10px;
        box-sizing: border-box
    }

    .tmclp-thumbnail div img {
        width: 100%;
        height: auto
    }
}

.tmclp-itemname {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 40px
}

.tmclp-itemname-sub {
    font-size: 50%;
    font-weight: bold
}

.tmclp-item-image {
    padding: 0 40px
}

.tmclp-list {
    margin-bottom: 40px
}

.tmclp-list li {
    background-image: url(/wp-content/themes/3rrrbtob/img/tmc-ico01.png);
    background-position: left 5px;
    background-repeat: no-repeat;
    padding-left: 30px;
    margin: 10px 0
}

.tmclp-itembox {
    display: flex;
    justify-content: space-between;
    padding: 80px 0
}

.tmclp-itemlist {
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.tmclp-itemlist-in {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box
}

.tmclp-itemlist-in-l {
    width: 20%
}

.tmclp-itemlist-in-r {
    width: 80%
}

.tmclp-name-type {
    font-size: 1.1em
}

.tmclp-name-type2 {
    font-size: 1.3em;
    font-weight: bold
}

.tmclp-btn01 {
    display: block;
    padding: 15px 10px;
    margin: 10px 0;
    background-color: #e60012;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    color: #FFF;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box
}

.tmclp-btn02 {
    display: block;
    padding: 15px 10px;
    margin: 10px 0;
    background-color: #1b9696;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    color: #FFF;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box
}

@media screen and (max-width:480px) {
    .tmclp-item-image {
        display: none
    }

    .tmclp-list li,
    .tmclp-name-type,
    .tmclp-name-type2,
    .tmclp-btn01,
    .tmclp-btn02,
    .tmclp-itemname {
        font-size: 14px
    }

    .tmclp-itemname,
    .tmclp-title,
    .tmclp-title02 {
        font-size: 24px
    }
}

.thermal-rentar {
    background-image: url(/wp-content/themes/3rrrbtob/img/thermal-rentaru/top-bg.png);
    background-size: contain;
    background-repeat: no-repeat
}

.thermal-rentar a img:hover {
    opacity: .8
}

.thermal-rentar section {
    overflow: hidden;
    text-align: center
}

.thermal-rentar .margin {
    margin: 10% 0
}

.thermal-rentar .sec01 h1 {
    margin: 3% 0 10% 0
}

.thermal-rentar-bun2 {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10%
}

.thermal-rentar-bun2 li {
    width: 48%
}

.thermal-rentar .sec03,
.thermal-rentar .sec05,
.thermal-rentar .sec08,
.thermal-rentar .sec11 {
    background-color: #f6f6f6
}

.thermal-rentar .sec06,
.thermal-rentar .sec09 {
    background-color: #ede8dc
}

.thermal-rentar-flex {
    display: flex;
    justify-content: space-around
}

.thermal-rentar-flex div {
    padding: 0 5px
}

.viewty-eva .main_visual {
    background-color: #f7f7f4;
    background-size: contain
}

.main_visual-wrap {
    margin: 10% 0 3% 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 3% 0
}

.main_visual-catch {
    display: inline-block;
    width: 60%
}

.main_visual-catch h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #2b2828;
    line-height: 1.5em;
    margin-bottom: 50px
}

.main_visual-catch p {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2b2828;
    line-height: 1.5em
}

.main_visual-catch img {
    margin-top: 30px;
    width: 70%
}

.main_visual-img {
    display: inline-block;
    width: 40%
}

.main_visual-img img {
    width: 100%
}

.viewty-eva-bun3 img {
    width: 50%
}

.green-text {
    color: #249783
}

.sub-text {
    font-size: 2.5rem;
    font-weight: bold
}

.sub2-text {
    font-size: 2rem;
    font-weight: bold
}

.example-img {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10%
}

.example-img li {
    width: 320px
}

.cont02-img {
    display: inline-block;
    text-align: center
}

.cont02-img img {
    width: 100%
}

.feature {
    background-color: #8dd8cb
}

.feature h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.5em;
    margin: 50px 0;
    text-align: center
}

.softwear-block {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    margin-bottom: 20px
}

.softwear-block h2 {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5em;
    text-align: center;
    padding: 40px 0
}

.parent {
    padding: 0 15px 40px
}

.child-flame {
    display: flex;
    justify-content: space-between
}

.child-flame2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.child-flame3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px
}

.child {
    width: 30%;
    text-align: center
}

.child2 {
    width: 50%;
    text-align: center
}

.child2 img {
    width: 90%;
    height: auto
}

.child h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
    padding: 10px 0
}

.child2 h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
    padding: 10px 0
}

.child2 p {
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    margin: 3% 0 5%
}

.child p {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3%
}

.child img {
    width: 100%;
    height: auto
}

.child3-text-group {
    display: inline-block;
    width: 70%
}

.lead {
    background-color: #b12d2d;
    padding: 5px 20px;
    color: #fff;
    font-weight: bold;
    font-size: 2rem;
    margin: 0 0 20px;
    width: 60%;
    text-align: center
}

.heading {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px
}

.detail {
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.5em
}

.item {
    display: inline-block;
    width: 30%
}

.item img {
    width: 100%;
    height: auto
}

.plan-title {
    font-size: 4rem;
    text-align: center;
    font-weight: bold;
    margin: 8% 0 3% 0
}

.plan-text {
    font-size: 2rem;
    line-height: 1.5em;
    text-align: center;
    margin: 0 0 3% 0
}

.plan-group-pc {
    display: flex;
    justify-content: space-evenly
}

.plan-group-pc-center {
    display: flex;
    justify-content: center
}

.plan-group-sp {
    display: none
}

.list {
    width: 30%
}

.list img {
    width: 100%;
    height: auto
}

.contact-bnr {
    background-color: #f7f7f4
}

.contact-bnr_h {
    background-color: #f2a0a0
}

.contact-title {
    font-weight: bold;
    font-size: 4rem;
    text-align: center;
    margin: 8% 0 3% 0
}

.contact-btn {
    display: flex;
    align-items: flex-end;
    justify-content: space-evenly
}

.contact-bnr .action-img {
    text-align: center
}

.contact-bnr .action-img img {
    width: 70%
}

.contact-bnr_h .action-img {
    text-align: center
}

.contact-bnr_h .action-img img {
    margin-top: 40px;
    width: 70%
}

.contact-bnr_h .eva-btn_h .sp {
    width: 60%;
    height: auto
}

.contact-bnr_h .eva-btn_h img {
    width: 100%;
    height: auto
}

.eva-btn_h {
    margin-top: 30px;
    width: 50%
}

.tel-area {
    text-align: center;
    margin: 4% 0 3%
}

.tel-area_h {
    color: #fff;
    text-align: center;
    margin: 4% 0 3%
}

.tel-title {
    font-size: 3rem;
    font-weight: bold;
    margin: 0 0 1% 0
}

.tel-number {
    font-size: 4rem;
    font-weight: bold;
    color: #b12d2d
}

.tel-time {
    font-size: 1.5rem;
    font-weight: bold
}

.flow-title {
    font-weight: bold;
    font-size: 4rem;
    text-align: center;
    margin: 8% 0 3% 0
}

.flow-text {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 5% 0
}

.payment {
    background-color: #f7f7f4;
    padding: 3% 5%;
    margin: 5% 5% 0
}

.payment-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3%;
    text-align: center
}

.payment dt {
    font-size: 1.8rem;
    font-weight: bold;
    padding: 20px 0 10px 0
}

.payment dd {
    font-size: 14px;
    font-weight: normal;
    padding: 5px 0 0
}

.support {
    background-color: #f0f8f7
}

.support h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.5em;
    margin: 50px 0;
    text-align: center;
    color: #249783
}

.child3 {
    width: 30%;
    text-align: center
}

.child3 img {
    width: 100%;
    height: auto
}

.child3 h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
    padding: 20px 0
}

.child3-subtext {
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
    margin-bottom: 3%
}

.maker-area {
    text-align: center;
    margin: 30px 0
}

.maker-heading {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.5em;
    margin: 15px 0;
    color: #249783
}

.maker-area img {
    width: 571px;
    height: 174px
}

.maker-text {
    font-size: 1.5rem;
    line-height: 1.5em;
    font-weight: normal;
    text-align: center;
    padding: 3% 0
}

.eva_form {
    text-align: center;
    margin-bottom: 50px
}

.form-heading {
    font-size: 4rem;
    font-weight: bold;
    margin: 8% 0 5% 0
}

.viewty-eva .eva_form img {
    width: 468px;
    height: 65px
}

.sec03 {
    background-color: #f7f9f9
}

.faq-heading {
    font-size: 4rem;
    font-weight: bold;
    margin: 8% 0 5% 0;
    text-align: center
}

.faq-area {
    background-color: #fff;
    padding: 3%;
    margin: 0 0 2%
}

.faq-area a {
    color: #b12d2d;
    padding: 3px 5px
}

.faq-area dt {
    font-size: 3rem;
    font-weight: bold;
    padding: 20px 0 30px 0
}

.faq-area dd {
    font-size: 1.8rem;
    font-weight: normal;
    padding: 5px 0 0;
    line-height: 1.5em
}

.support-btn_area {
    margin: 8% 0 3% 0
}

.support-btn {
    text-align: center;
    padding-bottom: 5%
}

.support-title {
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
    padding-bottom: 30px
}

.support-btn img {
    width: 470px;
    height: 67px
}

.floating-bnr {
    position: fixed;
    z-index: 99999;
    top: calc(50% - 400px/2);
    bottom: 0;
    right: -50px
}

.active {
    opacity: 1;
    visibility: visible
}

.floating-bnr li img {
    width: 60%
}

.viewty-eva a img:hover {
    opacity: .8
}

.viewty-eva section {
    overflow: hidden
}

.viewty-eva .margin {
    margin: 10% 0
}

.viewty-eva .sec01 {
    margin-bottom: 5%
}

.viewty-eva .sec01 h1 {
    font-size: 4rem;
    text-align: center;
    font-weight: bold;
    margin: 8% 0
}

.viewty-eva-bun2 {
    display: flex;
    justify-content: start;
    margin-bottom: 5%;
    align-items: flex-end
}

.viewty-eva-bun2 li {
    width: 335px;
    margin-right: 30px
}

.viewty-eva .sec03,
.thermal-rentar .sec05,
.thermal-rentar .sec08,
.thermal-rentar .sec11 {
    background-color: #f6f6f6
}

.viewty-eva .sec06,
.thermal-rentar .sec09 {
    background-color: #ede8dc
}

.viewty-eva-flex {
    display: flex;
    justify-content: space-around
}

.viewty-eva-flex div {
    padding: 0 5px
}

@media screen and (max-width:768px) {
    .main_visual-wrap {
        margin: 8% 0 3% 0;
        display: flex;
        align-items: center;
        flex-direction: column
    }

    .main_visual-catch {
        width: 100%
    }

    .main_visual-catch h1 {
        font-size: 2.5rem;
        margin-bottom: 30px
    }

    .main_visual-catch p {
        font-size: 16px;
        margin-bottom: 30px
    }

    .main_visual-img {
        width: 100%
    }

    .main_visual-catch-a {
        width: 50%
    }

    .main_visual-catch img {
        margin-top: 20px;
        width: 100%
    }

    .viewty-eva-bun2 {
        display: flex;
        margin-bottom: 5%;
        flex-direction: column
    }

    .viewty-eva-bun2 li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px
    }

    .viewty-eva .sec01 h1 {
        font-size: 20px;
        text-align: center;
        font-weight: bold;
        margin: 8% 0;
        line-height: 1.5em
    }

    .sub-text {
        display: inline-block;
        font-size: 16px;
        line-height: 1.5em;
        margin-bottom: 15px
    }

    .parent {
        padding: 0 0 20px
    }

    .child-flame {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between
    }

    .child {
        width: 100%;
        text-align: center;
        margin-bottom: 40px
    }

    .child h3 {
        font-size: 18px
    }

    .child:last-child {
        margin-bottom: 0
    }

    .sub2-text {
        font-size: 1rem
    }

    .sub2-text {
        font-size: 1rem
    }

    .feature h1 {
        font-size: 20px
    }

    .softwear-block {
        padding: 5px 10px
    }

    .softwear-block h2 {
        font-size: 2rem;
        padding: 40px 10px
    }

    .child-flame2 {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center
    }

    .child2 {
        width: 100%;
        margin-bottom: 20px
    }

    .child2 img {
        width: 100%;
        height: auto
    }

    .child2 h3 {
        font-size: 18px
    }

    .child-flame3 {
        display: flex;
        justify-content: space-between;
        padding-top: 20px;
        flex-direction: column
    }

    .child3-text-group {
        display: inline-block;
        width: 100%
    }

    .lead {
        padding: 5px;
        font-size: 18px;
        width: 100%
    }

    .heading {
        font-size: 18px
    }

    .detail {
        font-size: 14px
    }

    .item {
        width: 100%;
        padding: 30px 0 0
    }

    .plan-title {
        font-size: 20px
    }

    .plan-text {
        font-size: 16px
    }

    .contact-title {
        font-size: 20px;
        margin: 8% 0 5% 0
    }

    .contact-btn {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .contact-bnr_h .action-img img {
        margin-top: 30px;
        width: 100%
    }

    .eva-btn_h {
        width: 100%
    }

    .eva-btn {
        width: 100%;
        margin-bottom: 30px
    }

    .tel-area {
        margin: 4% 0 10%
    }

    .tel-title {
        font-size: 20px
    }

    .tel-number {
        font-size: 3rem
    }

    .flow-title {
        font-size: 20px;
        margin: 8% 0 3% 0
    }

    .flow-text {
        font-weight: normal;
        font-size: 16px;
        margin: 0 0 10% 0
    }

    .cont02-img {
        margin-bottom: 50px
    }

    .payment {
        padding: 5%;
        margin: 2% 2% 0
    }

    .payment-title {
        font-size: 20px;
        margin-bottom: 0
    }

    .payment dt {
        font-size: 17px;
        font-weight: bold;
        padding: 20px 0 10px 0
    }

    .support h1 {
        font-size: 22px
    }

    .child3 {
        width: 100%
    }

    .child3 img {
        width: 70%;
        height: auto
    }

    .child3 h3 {
        font-size: 16px;
        padding: 10px 0 5px
    }

    .child3-subtext {
        font-size: 16px;
        font-weight: normal;
        text-align: center;
        margin-bottom: 10%
    }

    .maker-heading {
        font-size: 20px
    }

    .maker-area img {
        width: 100%;
        height: auto
    }

    .maker-text {
        font-size: 14px;
        padding: 8% 0 0
    }

    .form-heading {
        font-size: 20px
    }

    .viewty-eva .form img {
        width: 100%;
        height: auto
    }

    .faq-heading {
        font-size: 20px
    }

    .faq-area dt {
        font-size: 18px;
        padding: 10px 0
    }

    .faq-area dd {
        font-size: 14px
    }

    .support-btn_area {
        margin: 8% 0 5% 0
    }

    .support-title {
        font-size: 18px;
        padding-bottom: 5%
    }

    .support-btn {
        padding-bottom: 20%
    }

    .support-btn img {
        width: 100%;
        height: auto
    }

    .viewty-eva-h .pc {
        display: none
    }

    .viewty-eva-h .sp {
        width: 70%;
        margin: 0 auto;
        display: block !important
    }

    .viewty-eva .pc {
        display: none
    }

    .viewty-eva .sp {
        display: block !important
    }

    .plan-group-pc {
        display: none
    }

    .plan-group-sp {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap
    }

    .list {
        width: 100%;
        height: auto;
        margin: 3% 0
    }

    .plan-group-pc-center {
        display: block
    }
}

.viewty-eva-h .pc {
    display: inline-block;
    text-align: center
}

.viewty-eva-h .sp {
    display: none
}

.viewty-eva .pc {
    display: inline-block;
    text-align: center
}

.viewty-eva .sp {
    display: none
}

@media screen and (min-width:768px) {
    .br-pc {
        display: block
    }

    .br-sp {
        display: none
    }
}

@media screen and (max-width:768px) {
    .br-pc {
        display: none
    }

    .br-sp {
        display: block
    }
}

.h_main_visual {
    background-image: url(/wp-content/themes/3rrrbtob/img/viewty-eva/h_eva_top.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    height: 580px
}

.h_main_visual-wrap {
    margin: 10% 0 3% 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 3% 0
}

.h_main_visual h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #1e263b;
    line-height: 1.5em;
    margin-bottom: 50px
}

.h_main_visual p {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1e263b;
    line-height: 1.5em
}

.eva_benefit {
    margin-bottom: 5%
}

.eva_benefit h1 {
    color: #1e263b;
    font-size: 4rem;
    text-align: center;
    font-weight: bold;
    padding: 8% 0
}

.eva_benefit h2 {
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    margin: 8% 0
}

.eva_benefit p {
    color: #1e263b;
    font-size: 1.8rem;
    line-height: 1.5em;
    text-align: center;
    margin: 0 0 3% 0
}

.eva_benefit .box01 {
    position: relative;
    margin: 2em 0;
    padding: .5em 1em;
    border: solid 2px #b09a51
}

.eva_benefit .box01 .box-title {
    position: absolute;
    display: inline-block;
    width: 65%;
    top: 0;
    left: 50%;
    text-align: center;
    padding: 0 9px;
    line-height: 1;
    font-size: 2.3rem;
    background: #FFF;
    color: #b09a51;
    font-weight: bold;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%)
}

.eva_benefit .box01 p {
    font-size: 15px;
    line-height: 1.5em;
    text-align: center;
    margin: 3% 0 2% 0
}

.eva_benefit .parent {
    padding: 0 15px 40px
}

.eva_benefit .child-flame2 {
    display: flex;
    justify-content: space-between;
    margin: 3% 2%
}

.eva_benefit .child img {
    margin-top: 10%;
    display: flex;
    justify-content: space-between
}

.eva_capillaries {
    width: 100%;
    margin: 0 auto;
    background: #fcf7f7
}

.eva_capillaries h1 {
    color: #d65b5b;
    font-size: 4rem;
    text-align: center;
    font-weight: bold;
    padding: 8% 0
}

.eva_capillaries h2 {
    color: #1e263b;
    font-size: 2.3rem;
    text-align: center;
    font-weight: bold;
    padding: 5% 0
}

.eva_capillaries p {
    color: #1e263b;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3%
}

.eva_capillaries h3 {
    color: #1e263b;
    font-size: 2rem;
    text-align: center;
    font-weight: bold
}

.eva_capillaries .child-subtext {
    color: #1e263b;
    font-size: 14px;
    text-align: center;
    margin-bottom: 3%;
    font-weight: normal
}

.eva_capillaries .child-flame {
    display: flex;
    justify-content: space-between
}

.softwear-block h2 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5em;
    text-align: center;
    padding: 40px 0
}

.capillaries-block {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    margin-bottom: 20px;
    padding: 3% 2%
}

.eva_effect {
    background-color: #f4f5ee
}

.eva_effect h1 {
    font-size: 4rem;
    text-align: center;
    font-weight: bold;
    padding: 8% 0
}

.eva_effect p {
    font-size: 2rem;
    line-height: 1.5em;
    text-align: center;
    margin: 0 0 3% 0
}

.eva_effect .text_boxstyle {
    padding: .5em 1em;
    margin: 2em 0;
    color: #fff;
    background: #b09a51;
    margin: 0 auto;
    widows: 1200px
}

.eva_effect .text_boxstyle p {
    letter-spacing: .08em;
    margin: 0;
    padding: 0
}

.eva_effect .item {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column
}

.eva_effect .item .text_box {
    position: relative;
    flex-grow: 1;
    flex-basis: 100px;
    text-align: left;
    margin-bottom: 40px
}

.eva_effect .item .number {
    font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-style: italic;
    font-size: 10rem;
    color: #b09a51;
    margin-right: 30px
}

.eva_effect .item .heading {
    padding-top: 10px;
    color: #1e263b;
    font-weight: bold;
    font-size: 2.7rem;
    letter-spacing: .08em
}

.eva_effect .item .title {
    align-items: center;
    display: flex;
    flex-wrap: wrap
}

.eva_effect .item img {
    object-fit: contain
}

.eva_effect .item .text {
    color: #1e263b;
    font-size: 1.7rem;
    margin: 20px 0;
    font-weight: normal
}

.eva_effect .text {
    padding: 0 20px;
    width: 60%
}

.eva_effect .text-img {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center
}

.eva_effect .reserve {
    flex-direction: row-reverse
}

.eva_effect .text-img img {
    width: 40%;
    height: auto
}

.scope_and_soft h1 {
    color: #1e263b;
    font-size: 4rem;
    text-align: center;
    font-weight: bold;
    padding: 8% 0
}

.scope_and_soft .cont02-img {
    display: inline-block;
    text-align: center
}

.scope_and_soft .cont02-img img {
    width: 100%
}

.scope_function {
    background-color: #f6f6f6;
    width: 100%;
    margin: 0 auto;
    padding: 0 2% 5%
}

.scope_function h2 {
    color: #1e263b;
    font-size: 2.3rem;
    text-align: center;
    font-weight: bold;
    padding: 5% 0
}

.scope_function b {
    display: inline-block;
    margin: 3px 0;
    width: 100%;
    border-radius: 12px;
    background: #b12d2d;
    color: #FFF;
    font-size: 1.4rem;
    padding: 3px 30px;
    text-align: center
}

.scope_function_contents {
    display: flex;
    flex-direction: row;
    justify-content: space-around
}

.scope_function .contentbox {
    background: #FFF;
    display: flex;
    width: 30%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center
}

.contentbox img {
    width: 100%;
    height: auto;
    padding: 5%
}

.cb_inner {
    padding: 5%
}

.function_title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center
}

.function_text {
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.5em;
    text-align: center
}

.h-softwear-block {
    width: 1000px;
    margin: 0 auto;
    background: #f6f6f6;
    margin-bottom: 20px
}

.h-softwear-block h1 {
    color: #1e263b;
    font-size: 2.3rem;
    text-align: center;
    font-weight: bold;
    padding: 8% 0 2%
}

.h-softwear-block h2 {
    color: #1e263b;
    font-size: 2.3rem;
    font-weight: bold;
    line-height: 1.5em;
    text-align: center;
    padding: 5% 0 3%
}

.speed {
    display: inline-block;
    text-align: center;
    padding: 0 2%
}

.speed-level {
    padding-bottom: 2%
}

.h-softwear-block p {
    margin: 0 auto;
    color: #1e263b;
    font-size: 1.5rem;
    text-align: center;
    padding: 2% 0
}

.eva_case h1 {
    font-size: 4rem;
    text-align: center;
    font-weight: bold;
    margin: 8% 0
}

.eva_case .text_boxstyle {
    widows: 1000px;
    padding: .5em 1em;
    margin: 2em 0;
    color: #fff;
    background: #b09a51
}

.eva_case .text_boxstyle p {
    margin: 0;
    padding: 0
}

.eva_case .item {
    width: 1000px;
    margin: 0 auto 8%
}

.eva_case .item .case_title {
    color: #b09a51;
    font-weight: bold;
    font-size: 2.8rem;
    letter-spacing: .08em;
    padding-bottom: 3%
}

.eva_case .name {
    color: #1e263b;
    font-weight: bold;
    font-size: 2.5rem
}

.eva_case .item .title {
    align-items: center;
    display: flex;
    flex-wrap: wrap
}

.company_img {
    width: 40%;
    height: auto
}

.eva_case .item img {
    object-fit: contain
}

.eva_case .item .text {
    width: 55%;
    color: #1e263b;
    font-size: 14px;
    line-height: 22px;
    padding: 1% 0;
    font-weight: normal
}

.eva_case .case_detail {
    display: flex;
    justify-content: space-between;
    margin: 2% 0
}

.case_btn img {
    width: 337px;
    height: 67px
}

.viewty-eva-h section {
    overflow: hidden
}

.viewty-eva-h .sec01 {
    margin-bottom: 5%
}

.viewty-eva-h .payment {
    background-color: #fff;
    border: 1px solid #b09a51
}

.viewty-eva-h_support {
    background-color: #f7f7f4
}

.viewty-eva-h_support h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.5em;
    margin: 50px 0;
    text-align: center;
    color: #b09a51
}

.viewty-eva-h_maker-area {
    text-align: center;
    margin: 30px 0
}

.viewty-eva-h_maker-area .maker-heading {
    color: #b09a51
}

.viewty-eva-h a img:hover {
    opacity: .8
}

.ve-header {
    background-image: url(https://3rrr-btob.jp/wp-content/themes/3rrrbtob/img/viewty-eva/ve-bgimage01.gif);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 7% 0;
    text-align: center
}

.ve-header h1 {
    font-size: 2.4em;
    font-weight: bold;
    margin: 10px 0 0 0
}

.ve-dl-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px
}

.ve-dl-btn li {
    width: 33%;
    margin: 0 10px
}

.ve-dl-btn a {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    border-width: 5px;
    border-color: #bd2920;
    border-style: solid;
    border-radius: 6px;
    background-image: -moz-linear-gradient(90deg, #e7e7e7 0, #fff 100%);
    background-image: -webkit-linear-gradient(90deg, #e7e7e7 0, #fff 100%);
    background-image: -ms-linear-gradient(90deg, #e7e7e7 0, #fff 100%);
    width: 100%;
    box-shadow: 0 0 10px -5px #3d3d3d;
    box-sizing: border-box
}

.ve-dl-btn a:hover {
    background: #f7f2f2
}

.ve-dl-btn-tex {
    width: 100%;
    font-size: 1.6em;
    font-weight: bold;
    color: #3c3c3c
}

.ve-dl-btn-tex span {
    display: block;
    font-size: 1.4rem;
    line-height: 1em
}

.ve-icon {
    width: 100%;
    margin-bottom: 10px
}

.ve-headline {
    background-color: #bd2920;
    padding: 10px;
    color: #fff;
    font-weight: bold
}

.ve-article-list li {
    border-bottom: 1px dotted #232323;
    font-size: 1.2em
}

.ve-article-list a {
    color: #666;
    display: block;
    padding: 10px 5px
}

.ve-article-list a:hover {
    background-color: #f5efef
}

@media screen and (max-width:768px) {
    .ve-dl-btn {
        display: block;
        width: 100%
    }

    .ve-dl-btn li {
        width: 100%;
        margin: 0 0 15px 0
    }

    .ve-icon {
        width: 50px;
        margin-bottom: 0
    }

    .ve-dl-btn-tex {
        flex: 1
    }

    .lp-page h2.ve-headline {
        margin-top: 20px
    }
}

@media screen and (max-width:768px) {
    .h_main_visual {
        background-image: url(/wp-content/themes/3rrrbtob/img/viewty-eva/h_eva_top-sp.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        height: 560px
    }

    .h_main_visual-wrap {
        margin: 50% 0 3% 0;
        display: flex;
        align-items: center;
        flex-direction: column
    }

    .h_main_visual p {
        font-size: 15px;
        margin-bottom: 10px
    }

    .h_main_visual h1 {
        font-size: 26px;
        margin-bottom: 35px
    }

    .eva_benefit h1 {
        font-size: 20px
    }

    .eva_benefit p {
        font-size: 1.5rem
    }

    .eva_benefit h2 {
        font-size: 18px;
        margin: 15% 0
    }

    .eva_benefit .box01 .box-title {
        width: 90%;
        line-height: 1.3em;
        font-size: 20px
    }

    .eva_benefit .parent {
        padding: 0 0 40px
    }

    .eva_benefit p {
        font-size: 1.3rem;
        margin: 0 0 5% 0
    }

    .eva_benefit .child-flame2 {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        margin: 15% 0 3%
    }

    .eva_benefit .child {
        width: 100%;
        margin-bottom: 10px
    }

    .eva_benefit .child:last-child {
        margin-bottom: 10px
    }

    .eva_capillaries h1 {
        font-size: 20px
    }

    .eva_capillaries h2 {
        font-size: 18px
    }

    .eva_capillaries p {
        font-size: 14px
    }

    .eva_capillaries h3 {
        font-size: 17px
    }

    .eva_effect h1 {
        font-size: 20px
    }

    .eva_effect p {
        font-size: 16px;
        margin: 0 0 10% 0
    }

    .eva_effect .item {
        width: 100%
    }

    .eva_effect .item .text_box {
        margin-bottom: 10px
    }

    .eva_effect .item .number {
        font-size: 5rem;
        margin-right: 0
    }

    .eva_effect .item .heading {
        padding-top: 0;
        font-size: 20px
    }

    .eva_effect .text-img {
        display: flex;
        justify-content: space-around;
        flex-direction: column-reverse;
        align-items: center
    }

    .eva_effect .item .text {
        color: #1e263b;
        font-size: 16px;
        margin: 20px 0;
        padding: 0;
        width: 100%;
        line-height: 1.5em;
        font-weight: normal
    }

    .eva_effect .text-img img {
        width: 100%;
        height: auto
    }

    .eva_effect .reserve {
        flex-direction: column-reverse
    }

    .scope_and_soft h1 {
        font-size: 20px
    }

    .scope_function {
        padding: 0 5% 5%
    }

    .scope_function h2 {
        font-size: 18px;
        padding: 5% 2%
    }

    .scope_function_contents {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        flex-wrap: nowrap;
        align-items: center
    }

    .scope_function .contentbox {
        width: 100%;
        margin-bottom: 5%
    }

    .h-softwear-block {
        width: 100%
    }

    .h-softwear-block h1 {
        font-size: 20px;
        padding: 8% 5% 2%
    }

    .h-softwear-block h2 {
        font-size: 17px;
        padding: 5% 5% 3%
    }

    .speed {
        padding: 0 3%;
        margin-bottom: 5%
    }

    .h-softwear-block p {
        width: 90%;
        font-size: 14px
    }

    .h-softwear-block .parent {
        padding: 0 5%
    }

    .h-softwear-block .child2 h3 {
        font-size: 16px
    }

    .eva_case h1 {
        font-size: 20px
    }

    .eva_case .item {
        width: 100%
    }

    .eva_case .item .case_title {
        font-size: 18px
    }

    .eva_case .name {
        font-size: 15px
    }

    .eva_case .case_detail {
        flex-direction: column-reverse;
        align-items: center
    }

    .eva_case .item .text {
        width: 100%;
        font-size: 1.3rem;
        line-height: 1.5em;
        padding: 5% 0
    }

    .company_img {
        width: 100%;
        height: auto
    }

    .viewty-eva-h_support h1 {
        font-size: 20px
    }
}

.demoki p {
    margin: 10px 0
}

.demo_menu {
    font-weight: bold;
    width: 100%;
    padding: 2.5% 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around
}

.demo_menu a {
    display: block;
    width: 32%;
    padding: .8em;
    text-decoration: none;
    text-align: center;
    color: #fff;
    background: #313131;
    border-radius: 3px;
    transition: .4s;
    border: solid 2px #313131
}

@media only screen and (max-width:768px) {
    .demo_menu {
        display: block;
        width: 100%
    }

    .demo_menu a {
        width: 100%;
        margin-bottom: 10px
    }
}

.demo_menu a:hover {
    background: #FFF;
    color: #313131;
    border: solid 2px #313131
}

.demo_menu a.demo_btn02 {
    background: #b40000;
    color: #FFF;
    border: solid 2px #b40000
}

.demo_menu a.demo_btn02:hover {
    color: #b40000;
    background: #FFF;
    border: solid 2px #b40000
}

.demoflow-list {
    margin-top: 20px
}

.demoflow-list li {
    margin-top: 15px;
    border-bottom: solid 1px #eee
}

.demoflow-list p {
    margin: 0 0 10px 0
}

.secondtitle {
    position: relative;
    background: #f7f6f5;
    padding: 10px 10px 10px 30px;
    font-size: 22px;
    font-weight: bold;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    margin-bottom: 20px
}

@media only screen and (max-width:768px) {
    .secondtitle {
        font-size: 17px;
        margin-bottom: 15px;
        padding: 10px 10px 10px 30px
    }
}

.secondtitle:before {
    content: '';
    position: absolute;
    top: 17px;
    left: 15px;
    width: 5px;
    height: 18px;
    background: #e70a03
}

.tab_demo {
    padding: 0 20px 20px 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box
}

.demoki dl.qa {
    overflow: hidden;
    _zoom: 1
}

.demoki dl.qa dd,
.demoki dl.qa dt {
    text-indent: -2.6em;
    padding: 0 20px 0 50px
}

.demoki dl.qa dt {
    font-size: 16px;
    margin: 20px 20px 0 0
}

.demoki dl.qa dd:first-letter,
.demoki dl.qa dt:first-letter {
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
    padding: 5px
}

.demoki dl.qa dd {
    font-size: 16px;
    margin: 10px 0 -1px 0;
    padding-bottom: 20px;
    border-bottom: solid 1px #aaa
}

.demoki dl.qa dt:first-letter {
    color: #14198c
}

.demoki dl.qa dd:first-letter {
    color: #b40000
}

.lp-page h1 {
    font-size: 3.4rem;
    margin-bottom: 40px;
    border-bottom: 1px solid #d2d2d2;
    background: #f2f2f2;
    padding: 40px 20px
}

.lp-page h2 {
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 40px
}

.moist-itemmap {
    text-align: center;
    margin: 20px 0 60px 0;
    padding: 20px;
    border: solid 5px #c9c9c9
}

.moist-itemmap img {
    max-width: 100%;
    height: auto
}

.lp-itembox {
    margin-bottom: 60px
}

.lp-itembox-img {
    text-align: center;
    padding: 40px 10px;
    box-sizing: border-box
}

.lp-itembox-img img {
    width: auto;
    margin: 0 auto
}

.lp-itembox-data-cate {
    padding: 5px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    margin-bottom: 3px
}

.cate1 {
    background-color: #1357a8
}

.cate2 {
    background-color: #73a570
}

.cate3 {
    background-color: #19a3d1
}

.cate4 {
    background-color: #7058a2
}

.lp-itembox-data-neme {
    margin: 25px 0 20px 0
}

.lp-itembox-data-neme-id {
    font-size: 2em;
    font-weight: bold;
    line-height: 1em
}

.lp-itembox-data-cap {
    font-size: 1.2em;
    margin: 20px 0;
    color: #1357a8
}

.lp-itembox-data-spec {
    display: flex;
    flex-wrap: wrap
}

.lp-itembox-data-spec dt {
    width: 40%;
    border-top: solid 1px #aaa;
    padding: 5px
}

.lp-itembox-data-spec dd {
    width: 60%;
    border-top: solid 1px #aaa;
    padding: 5px;
    font-weight: bold;
    text-align: right
}

.lp-itembox-subdata {
    width: 100%;
    margin-top: 10px
}

.lp-itembox-subdata-icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.lp-itembox-subdata-icon::after {
    content: "";
    display: block;
    width: 32.5%
}

.lp-itembox-subdata-icon li {
    padding: 5px;
    width: 32.5%;
    margin-bottom: 5px;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    background-color: #ebecf3
}

.lp-itembox-pagelink {
    width: 100%;
    margin-top: 20px;
    text-align: center
}

.link-btn01 {
    display: block;
    padding: 10px;
    background-color: #cbd6e2;
    font-size: 1.1em;
    font-weight: bold;
    color: #2f3d4f
}

.link-btn01::before {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid #000;
    border-top: 2px solid #000;
    display: inline-block;
    transform: rotate(45deg);
    margin-right: 10px
}

@media screen and (min-width:768px) {
    .lp-itembox-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between
    }

    .lp-itembox {
        display: flex;
        flex-wrap: wrap;
        width: 48%
    }

    .lp-itembox-img {
        order: 2;
        width: 35%;
        padding: 40px 0 40px 25px;
        box-sizing: border-box;
        text-align: center;
        align-items: center;
        display: flex;
        justify-content: center
    }

    .lp-itembox-img img {
        width: auto;
        margin: 0 auto;
        max-width: 100%;
        height: auto
    }

    .lp-itembox-data {
        order: 1;
        width: 65%
    }

    .lp-itembox-data-spec {
        font-size: 1.25rem
    }

    .lp-itembox-data-spec dt {
        white-space: nowrap
    }

    .lp-itembox-subdata {
        order: 3;
        width: 100%
    }

    .lp-itembox-pagelink {
        order: 4
    }

    .lp-textbox-flex {
        display: flex;
        flex-wrap: wrap
    }

    .lp-textbox-flex img {
        max-width: 100%;
        height: auto
    }

    .lp-textbox-flex-3c {
        width: 33.333%;
        padding: 10px
    }

    .lp-textbox-flex-30 {
        width: 30%;
        padding: 10px
    }

    .lp-textbox-flex-50 {
        width: 50%;
        padding: 10px
    }

    .lp-textbox-flex-70 {
        width: 70%;
        padding: 10px
    }
}

.hs-button {
    margin: 0 auto;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    position: relative;
    text-align: center;
    transition: all .15s linear;
    background-color: #e70a03;
    border-color: #e70a03;
    color: #fff;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    font-size: 20px;
    padding: 10px 30px
}

.hs-button:hover,
.hs-button:focus {
    background-color: #ff8f73;
    border-color: #ff8f73
}

.hs-button:active {
    background-color: #e66e50;
    border-color: #e66e50
}

.hs-video-form label {
    color: #fff !important
}

.hs-video-form .hs-back-button {
    background-color: #fff;
    width: 20%;
    height: 38px;
    margin-right: 10px;
    border: 1px solid;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px
}

.hs-video-form .hs-button {
    width: 70%
}

.hs-video-form .hs-button span {
    font-size: 15px
}

.hs-video-form .hs-richtext {
    color: #fff !important
}

.hs-video-form .legal-consent-container {
    max-height: 180px !important;
    overflow-y: scroll !important
}

.hs-video-form .legal-consent-container:after {
    content: "";
    display: block;
    height: 100px;
    width: 100%
}

.hs-video-form .legal-consent-wrapper {
    position: relative
}

.hs-video-form .legal-consent-overlay {
    position: absolute;
    pointer-events: none;
    left: 0;
    bottom: 0;
    height: 100px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #292929 100%)
}

.hs-error-msgs label {
    color: #f2545b
}

.hs-input {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    padding: 9px 10px;
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    border: 1px solid #cbd6e2;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px
}

.input>* {
    width: 100% !important
}

.hs-input:not([type=file]) {
    background-color: #f5f8fa
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
    cursor: pointer;
    width: auto;
    height: auto;
    padding: 0;
    margin: 3px 5px 3px 0;
    line-height: normal;
    border: 0
}

.hs-input[type=file] {
    padding: initial;
    border: initial;
    line-height: initial;
    box-shadow: none
}

select.is-placeholder {
    color: #bfbfbf
}

select.is-placeholder:focus {
    color: #33475b
}

.hs-input:-moz-placeholder {
    color: #bfbfbf
}

.hs-input::-webkit-input-placeholder {
    color: #bfbfbf
}

.hs-input option:disabled {
    color: #bfbfbf
}

.hs-input input,
.hs-input textarea {
    transition: border .2s linear
}

.hs-input:focus {
    outline: 0;
    border-color: rgba(82, 168, 236, .8)
}

textarea.hs-input {
    height: auto;
    min-height: 250px
}

select[multiple].hs-input {
    height: inherit
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
    border-color: #c87872
}

input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
    border-color: #b9554d
}

.actions {
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 17px 0;
    text-align: center
}

.inputs-list {
    margin: 0 0 5px;
    width: 100%;
    padding-left: 5px
}

.inputs-list:first-child {
    padding-top: 6px
}

ul.no-list {
    list-style: none
}

.field {
    margin-bottom: 0
}

.hs-field-desc {
    color: #7c98b6;
    margin: 0 0 6px;
    font-size: 14px
}

.hs-form-required {
    color: red
}

.hs-richtext {
    margin-bottom: 3px;
    line-height: 24px;
    font-size: 14px;
    color: #33475b
}

.hs-richtext hr {
    margin-left: 0;
    width: 91%
}

.hs-custom-style .hs-dependent-field>div input.hs-input:not([type=checkbox]):not([type=radio]) {
    width: 90%
}

form.hs-form-rtl .field {
    flex: 0 1 100%
}

form.hs-form-rtl .hs-input[type=checkbox],
form.hs-form-rtl .hs-input[type=radio] {
    margin: 3px 5px 3px 5px
}

form.hs-form-rtl fieldset {
    display: flex
}

form.hs-form-rtl fieldset[class^=form-columns-] .input {
    margin-right: 0
}

form.hs-form-rtl ul {
    padding: 0
}

form.hs-form-rtl .legal-consent-container .hs-form-booleancheckbox-display {
    display: flex
}

form.hs-form-rtl .legal-consent-container .hs-form-booleancheckbox-display input {
    width: auto;
    float: none
}

form.hs-form-rtl .legal-consent-container .hs-form-booleancheckbox-display>span {
    display: inline-block;
    margin-left: 0
}

form.hs-form-rtl .hs-dependent-field {
    display: flex;
    flex: 0 1 100%;
    flex-wrap: wrap
}

.email-correction,
.email-validation {
    padding-top: 3px;
    font-size: 12px
}

.email-correction a,
.email-validation a {
    cursor: pointer
}

.hs-form-checkbox-display {
    display: block;
    width: 100%;
    cursor: pointer;
    padding: 8px;
    border-bottom: dotted 1px #cacaca;
}

div.hs_kataban_demoki {
    height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 0;
    border: 1px solid #cbd6e2;
    background: #f5f8fa;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px
}

div.hs_kataban_demoki li.hs-form-checkbox:nth-child(even) {
    background: #fff
}

div.hs_kataban_demoki li.hs-form-checkbox:hover {
    background: #b0c4dc
}

div.hs_kataban_demoki .hs-form-checkbox-display input:checked+span {
    color: #2629d7;
    /* チェック中のテキスト色 */
}

div.hs_kataban_demoki_biyou {
    height: 400px;
    overflow-y: scroll;
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 0;
    border: 1px solid #e2cbdb;
    background: #faf5f5;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px
}

div.hs_kataban_demoki_biyou li.hs-form-checkbox:nth-child(even) {
    background: #fff
}

div.hs_kataban_demoki_biyou li.hs-form-checkbox:hover {
    background: #d8b4b4
}

div.hs_kataban_demoki_biyou .hs-form-checkbox-display input:checked+span {
    color: #d72626;
    /* チェック中のテキスト色 */
}

div.hs_kataban_demoki_cs {
    height: 90px;
    overflow-y: scroll;
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 0;
    border: 1px solid #cbe2d5;
    background: #f5faf5;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px
}

div.hs_kataban_demoki_cs li.hs-form-checkbox:nth-child(even) {
    background: #fff
}

div.hs_kataban_demoki_cs li.hs-form-checkbox:hover {
    background: #b4d8b4
}

div.hs_kataban_demoki_cs .hs-form-checkbox-display input:checked+span {
    color: #32892c;
    /* チェック中のテキスト色 */
}

label[data-reactid=".hbspt-forms-0.2.0.1:0.$LEGAL_CONSENT=1subscription_type_15301632.$LEGAL_CONSENT=1subscription_type_15301632.$LEGAL_CONSENT=1subscription_type_15301632.0.0.0"] {
    background: #cbd6e2;
    padding: 10px;
    font-size: 14px;
    width: 130px;
    display: block;
    float: none;
    width: auto;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 4px
}

label[data-reactid=".hbspt-forms-0.2.0.3.$LEGAL_CONSENT=1processing.$LEGAL_CONSENT=1processing.$LEGAL_CONSENT=1processing.0.0.0"] {
    background: #ffd8df;
    padding: 10px;
    font-size: 14px;
    width: 130px;
    display: block;
    float: none;
    width: auto;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 4px
}

div.hs_kataban_demoki li.hs-form-checkbox:has(input[value="マイクロスコープ"]),
div.hs_kataban_demoki li.hs-form-checkbox:has(input[value="各種顕微鏡製品"]),
div.hs_kataban_demoki li.hs-form-checkbox:has(input[value="顕微鏡アダプタ"]),
div.hs_kataban_demoki li.hs-form-checkbox:has(input[value="●先端可動式 工業用内視鏡"]),
div.hs_kataban_demoki li.hs-form-checkbox:has(input[value="●管内カメラ"]),
div.hs_kataban_demoki li.hs-form-checkbox:has(input[value="●高所点検カメラ"]),
div.hs_kataban_demoki li.hs-form-checkbox:has(input[value="●ボアスコープ"]),
div.hs_kataban_demoki li.hs-form-checkbox:has(input[value="ワイヤレス顕微鏡"]),
div.hs_kataban_demoki li.hs-form-checkbox:has(input[value="【拡大鏡】"]) {
    background: #cbd6e2;
    font-weight: bold;
    pointer-events: none
}

div.hs_kataban_demoki li.hs-form-checkbox:has(input[value="-----オプション品-----"]),
div.hs_kataban_demoki li.hs-form-checkbox:has(input[value="-----工業用内視鏡・検査カメラ-----"]),
div.hs_kataban_demoki li.hs-form-checkbox:has(input[value="-----LED・ライト------"]) {
    background: #dde4ec;
    font-weight: bold;
    pointer-events: none
}

div.hs_kataban_demoki_biyou li.hs-form-checkbox:has(input[value="血流観察"]),
div.hs_kataban_demoki_biyou li.hs-form-checkbox:has(input[value="カウンセリングマイクロスコープ"]),
div.hs_kataban_demoki_biyou li.hs-form-checkbox:has(input[value="肌・頭皮観察用マイクロスコープ"]),
div.hs_kataban_demoki_biyou li.hs-form-checkbox:has(input[value="周辺機器"]) {
    background: #e2cbcb;
    font-weight: bold;
    pointer-events: none
}

div.input li.hs-form-checkbox:has(input[value="デジタル顕微鏡"]),
div.input li.hs-form-checkbox:has(input[value="美容・ヘルスケア"]) {
    background: #cbd6e2;
    font-weight: bold;
    pointer-events: none
}

input[value="マイクロスコープ"],
input[value="各種顕微鏡製品"],
input[value="顕微鏡アダプタ"],
input[value="-----オプション品-----"],
input[value="-----工業用内視鏡・検査カメラ-----"],
input[value="●先端可動式 工業用内視鏡"],
input[value="●管内カメラ"],
input[value="●高所点検カメラ"],
input[value="●ボアスコープ"],
input[value="-----LED・ライト------"],
input[value="ワイヤレス顕微鏡"],
input[value="美容製品"],
input[value="【拡大鏡】"],
input[value="血流観察"],
input[value="カウンセリングマイクロスコープ"],
input[value="肌・頭皮観察用マイクロスコープ"],
input[value="周辺機器"] {
    display: none
}

input[value="デジタル顕微鏡"],
input[value="美容・ヘルスケア"] {
    display: none
}

.hs-richtext h1 {
    text-align: center;
    font-size: clamp(20px, 5vw, 30px) !important;
    line-height: 1.4;
    background: #efefef;
    border-bottom: 0;
    padding: 15px 10px;
    margin: 20px 0 10px 0;
}

.hs-dependent-field {
    background: #ffe9e9;
    padding: 5px
}

@media(max-width:400px), (min-device-width:320px)and (max-device-width:480px) {

    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
        float: none;
        width: 100%
    }

    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
        width: 24px
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
    -webkit-appearance: none;
    -moz-appearance: none
}

#hbspt-form-20c9ef0f-7b4e-423a-ae5f-4bacb767e86c {
    background-color: #FFF
}

.hs-form-89f05e06-4338-4593-938a-8bf465a58f6a.hs-form {
    width: 100%
}

.hs-form-89f05e06-4338-4593-938a-8bf465a58f6a .hs-submit>.actions {
    text-align: center
}

.hs-form-89f05e06-4338-4593-938a-8bf465a58f6a legend.hs-field-desc {
    color: #586f87;
    font-size: 14px
}

.fn-date-picker.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    *zoom: 1
}

.fn-date-picker.pika-single.is-hidden {
    display: none
}

.fn-date-picker.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, .5)
}

.fn-date-picker.pika-single:after,
.fn-date-picker.pika-single:before {
    content: " ";
    display: table
}

.fn-date-picker.pika-single:after {
    clear: both
}

.fn-date-picker .pika-lendar {
    float: left;
    width: 240px;
    margin: 8px
}

.fn-date-picker .pika-title {
    position: relative;
    text-align: center
}

.fn-date-picker .pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0
}

.fn-date-picker .pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    background-color: #fff
}

.fn-date-picker .pika-next,
.fn-date-picker .pika-prev {
    display: block;
    cursor: pointer;
    position: relative;
    outline: 0;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    *position: absolute;
    *top: 0
}

.fn-date-picker .pika-next:hover,
.fn-date-picker .pika-prev:hover {
    opacity: 1
}

.fn-date-picker .pika-next.is-disabled,
.fn-date-picker .pika-prev.is-disabled {
    cursor: default;
    opacity: .2
}

.fn-date-picker .is-rtl .pika-next,
.fn-date-picker .pika-prev {
    float: left;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==);
    *left: 0
}

.fn-date-picker .is-rtl .pika-prev,
.fn-date-picker .pika-next {
    float: right;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=);
    *right: 0
}

.fn-date-picker .pika-select {
    display: inline-block;
    *display: inline
}

.fn-date-picker .pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0
}

.fn-date-picker .pika-table td,
.fn-date-picker .pika-table th {
    width: 14.285714285714286%;
    padding: 0
}

.fn-date-picker .pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: 700;
    text-align: center
}

.fn-date-picker .pika-table abbr {
    border-bottom: 0;
    cursor: help
}

.fn-date-picker .pika-button {
    cursor: pointer;
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f2f2f2
}

.fn-date-picker .pika-button:hover {
    color: #fff !important;
    background: #ff8000 !important;
    box-shadow: none !important;
    border-radius: 3px !important
}

.fn-date-picker .is-today .pika-button {
    color: #3af;
    font-weight: 700
}

.fn-date-picker .is-selected .pika-button {
    color: #fff;
    font-weight: 700;
    background: #3af;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px
}

.fn-date-picker .is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3
}

.fn-date-picker .pika-week {
    font-size: 11px;
    color: #999
}

.hs-form-89f05e06-4338-4593-938a-8bf465a58f6a .inputs-list.inline-list li {
    vertical-align: top;
    display: inline-block;
    word-wrap: break-word;
    padding-right: 16px
}

.hs-form-89f05e06-4338-4593-938a-8bf465a58f6a .inputs-list.inline-list li:after {
    clear: both
}

.hs-form-89f05e06-4338-4593-938a-8bf465a58f6a .inputs-list.inline-list li input {
    float: left
}

.hs-form-89f05e06-4338-4593-938a-8bf465a58f6a .inputs-list.inline-list.inline-list-2 li {
    width: 50%
}

.hs-form-89f05e06-4338-4593-938a-8bf465a58f6a .inputs-list.inline-list.inline-list-2 li:nth-child(2n) {
    padding-right: 0
}

.hs-form-89f05e06-4338-4593-938a-8bf465a58f6a .inputs-list.inline-list.inline-list-3 li {
    width: 33%
}

.hs-form-89f05e06-4338-4593-938a-8bf465a58f6a .inputs-list.inline-list.inline-list-3 li:nth-child(3n) {
    width: 34%;
    padding-right: 0
}

.hs-fieldtype-intl-phone.hs-input {
    padding: 0;
    background: 0;
    border: 0;
    height: auto
}

.hs-fieldtype-intl-phone.hs-input:after {
    clear: both;
    content: " ";
    display: table
}

.hs-fieldtype-intl-phone.hs-input .hs-input {
    margin-bottom: 0
}

.hs-fieldtype-intl-phone.hs-input input {
    width: 68% !important;
    float: right
}

.hs-fieldtype-intl-phone.hs-input select {
    float: left;
    width: 30% !important
}

@media(max-device-width:480px) and (min-device-width:320px), (max-width:400px) {
    .hs-form-89f05e06-4338-4593-938a-8bf465a58f6a>.hs-phone>.input>.hs-fieldtype-intl-phone.hs-input.hs-input {
        width: 68% !important
    }

    .hs-form-89f05e06-4338-4593-938a-8bf465a58f6a>.hs-phone>.input>.hs-fieldtype-intl-phone.hs-input>select.hs-input {
        width: 30% !important
    }
}

.hs-input-range-container div {
    display: inline-block;
    line-height: 50px
}

.hs-input-range-container .hs-input-range {
    width: 90%;
    height: 40px
}

.hs-input-range-container .hs-input-range>* {
    vertical-align: middle
}

.hs-input-range-container .hs-input-range input {
    margin: 0 5px;
    width: 85%
}

.hs-input-range-container .hs-input-range-value-container {
    width: 10%
}

.hs-input-range-container .hs-input {
    width: 100% !important;
    margin-right: 1px;
    background-color: #fff;
    text-align: center
}

.hs-input-range__slider {
    appearance: none;
    margin: 0;
    height: 30px;
    overflow: hidden;
    cursor: pointer
}

.hs-input-range__slider:focus {
    outline: 0
}

.hs-input-range__slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg, #0199ff, #0199ff) 100% 50%/100% 3px no-repeat transparent
}

.hs-input-range__slider::-moz-range-progress,
.hs-input-range__slider::-moz-range-track {
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg, #cfcfcf, #cfcfcf) 100% 50%/100% 3px no-repeat transparent
}

.hs-input-range__slider::-moz-range-progress {
    background: linear-gradient(180deg, #0199ff, #0199ff) 100% 50%/100% 3px no-repeat transparent
}

.hs-input-range__slider::-moz-range-thumb {
    appearance: none;
    margin: 0;
    height: 13px;
    width: 13px;
    background: #0199ff;
    border-radius: 100%;
    border: 0;
    transition: background-color .15s
}

.hs-input-range__slider::-ms-track {
    width: 100%;
    height: 30px;
    border: 0;
    color: transparent;
    background: transparent
}

.hs-input-range__slider::-ms-fill-lower {
    background: linear-gradient(180deg, #0199ff, #0199ff) 100% 50%/100% 3px no-repeat transparent
}

.hs-input-range__slider::-ms-fill-upper {
    background: linear-gradient(180deg, #cfcfcf, #cfcfcf) 100% 50%/100% 3px no-repeat transparent
}

.hs-input-range__slider::-ms-thumb {
    appearance: none;
    height: 13px;
    width: 13px;
    background: #0199ff;
    border-radius: 100%;
    border: 0;
    transition: background-color .15s;
    top: 0;
    margin: 0;
    box-shadow: none
}

.hs-input-range__slider:focus::-webkit-slider-thumb,
.hs-input-range__slider:hover::-webkit-slider-thumb {
    background-color: #55c2ff
}

.hs-input-range__slider:focus::-moz-range-thumb,
.hs-input-range__slider:hover::-moz-range-thumb {
    background-color: #55c2ff
}

.hs-input-range__slider:focus::-ms-thumb,
.hs-input-range__slider:hover::-ms-thumb {
    background-color: #55c2ff
}

.hs-input-rating__container {
    width: 95%;
    margin-bottom: 30px;
    display: table;
    table-layout: fixed
}

.hs-input-rating__container section {
    display: table-row
}

.hs-input-rating__label {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center
}

.hs-input-rating__label input,
.hs-input-rating__label svg {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    cursor: pointer
}

.hs-input-rating__label svg {
    position: absolute;
    width: 45px;
    height: 45px;
    fill: #fff;
    stroke: #ccc;
    transform: scale(.6);
    transition: transform .2s ease-in-out
}

.hs-input-rating__label path {
    transition: fill .2s ease-in-out, stroke .1s ease-in-out
}

.hs-input-rating__is-star input {
    display: none
}

.hs-input-rating__svg-is-selected {
    transform: scale(.7)
}

.hs-input-rating__svg-is-selected path {
    fill: #f7e31b;
    stroke: #d7c508
}

.hs-custom-style .hs-input,
.hs-custom-style fieldset {
    max-width: 100%
}

.hs-custom-style>div.form-columns-3 .hs-form-field,
.hs-custom-style fieldset.form-columns-3 .hs-form-field {
    width: 33.3%
}

.hs-custom-style>div>div:last-of-type .hs-input:not([type=checkbox]):not([type=radio]),
.hs-custom-style fieldset>div:last-of-type .hs-input:not([type=checkbox]):not([type=radio]) {
    width: 100%;
    max-width: 100%
}

.hs-custom-style>div input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]),
.hs-custom-style fieldset input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]) {
    box-sizing: border-box;
    padding: 0 15px;
    min-height: 27px
}

.hs-custom-style>div textarea,
.hs-custom-style fieldset textarea {
    padding: 10px 15px
}

.hs-custom-style .hs-dependent-field>div .hs-input:not([type=checkbox]):not([type=radio]) {
    width: 100%
}

@media(max-width:400px), (min-device-width:320px) and (max-device-width:480px) {

    .hs-custom-style .hs-input:not([type=checkbox]):not([type=radio]),
    .hs-custom-style fieldset {
        margin-right: 0 !important;
        width: 100% !important
    }

    form.hs-form-89f05e06-4338-4593-938a-8bf465a58f6a:not(.hs-video-form) .form-columns-2 .hs-form-field,
    form.hs-form-89f05e06-4338-4593-938a-8bf465a58f6a:not(.hs-video-form) .form-columns-3 .hs-form-field {
        float: none;
        width: 100%
    }

    form.hs-form-89f05e06-4338-4593-938a-8bf465a58f6a:not(.hs-video-form) .form-columns-2 .hs-form-field input[type=checkbox],
    form.hs-form-89f05e06-4338-4593-938a-8bf465a58f6a:not(.hs-video-form) .form-columns-2 .hs-form-field input[type=radio],
    form.hs-form-89f05e06-4338-4593-938a-8bf465a58f6a:not(.hs-video-form) .form-columns-3 .hs-form-field input[type=checkbox],
    form.hs-form-89f05e06-4338-4593-938a-8bf465a58f6a:not(.hs-video-form) .form-columns-3 .hs-form-field input[type=radio] {
        width: auto
    }
}

.legal-consent-container .field.hs-form-field {
    margin-bottom: 8px
}

.legal-consent-container .hs-field-desc.checkbox-desc {
    margin: -12px 0 0 21px
}

.legal-consent-container .hs-form-booleancheckbox-display>span {
    display: block;
    margin-left: 20px
}

.legal-consent-container .hs-form-booleancheckbox-display p {
    margin: 0;
    display: inline
}

.legal-consent-container .hs-error-msgs label {
    color: #f2545b
}

.legal-consent-container~.hs_recaptcha {
    margin-top: 18px
}

.cookie-reset-container {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: right
}

#hs-outer-captcha-target,
#hs-outer-captcha-target * {
    display: none;
    height: 0;
    width: 0
}

.hubspot-link__container {
    font-size: 14px;
    padding-bottom: 40px;
    position: relative;
    color: #9fa0a2;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif
}

.hubspot-link-text {
    color: #00a4bd;
    font-weight: 400
}

.hubspot-link__container.sproket {
    color: #9fa0a2
}

.hubspot-link {
    color: #9fa0a2
}

.hubspot-link,
.hubspot-link:hover {
    text-decoration: none
}

.hubspot-link:hover .hubspot-link-text {
    text-decoration: underline
}

.hubspot-link__icon {
    margin-bottom: -1px;
    margin-right: 5px
}

.hubspot-link__container.sproket .hubspot-link__icon {
    width: 30px;
    margin-right: 0;
    float: left;
    margin-top: -9px;
    margin-left: -5px
}

.hbspt-form fieldset {
    max-width: 100% !important;
    margin: 15px 0 0 0 !important
}

.hs-form-field>label {
    font-size: 120%;
    font-weight: bold
}

.grecaptcha-badge {
    display: none
}

.recaptcha_policy {
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 11px !important;
    color: #444 !important
}

.recaptcha_policy a {
    font-size: 11px !important;
    color: #111 !important
}

@media screen and (max-width:768px) {
    .floating-bnr {
        top: inherit;
        bottom: 5px;
        right: 0
    }

    .floating-bnr li img.sp {
        width: 90%
    }
}

.subgenre-box-wrap {
    background-color: #efefed;
    padding: 15px 0
}

.subgenre-box {
    display: flex;
    align-items: center;
    flex-wrap: nowrap
}

.subgenre-box-title {
    white-space: nowrap
}

.subgenre-box-list {
    display: flex;
    flex-wrap: wrap;
    border-left: solid 1px #d6d6d6;
    margin-left: 15px;
    padding-left: 10px
}

.subgenre-box-list>.subgenre-box-list {
    display: flex;
    flex-wrap: wrap;
    border-left: solid 0 #d6d6d6;
    margin-left: 0;
    padding-left: 0
}

.subgenre-box-list li {
    display: inline-block;
    box-sizing: border-box;
    padding: 1px;
    margin: 0 5px 5px 0
}

.subgenre-box-list li a {
    display: block;
    padding: 5px 10px;
    font-size: 1.2rem;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #dbdbdb;
    border-radius: 30px
}

.subgenre-box-list li a:hover {
    background-color: #c2c2c2
}

.subgenre-box-list li.checked a {
    background-color: #e70a03;
    color: #fff
}

@media only screen and (max-width:768px) {
    .subgenre-box {
        display: block
    }

    .subgenre-box-title {
        white-space: nowrap
    }

    .subgenre-box-list {
        display: flex;
        flex-wrap: wrap;
        border-left: solid 0 #d6d6d6;
        border-top: solid 1px #d6d6d6;
        margin-left: 0;
        padding-left: 0;
        margin-top: 5px;
        padding-top: 5px
    }
}

.ft-contact-block {
    border: solid 8px #e70a03;
    padding: 30px;
    margin-top: 20px
}

.ft-contact-block-ttl {
    font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo;
    -webkit-font-feature-settings: 'palt' 1;
    font-feature-settings: 'palt' 1;
    -webkit-text-size-adjust: 100%;
    font-weight: bold;
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 10px
}

.ft-contact-block-link a {
    display: block;
    background-color: #e70a03;
    color: #fff;
    padding: 20px;
    font-size: 1.4rem;
    font-weight: bold;
    width: 60%;
    text-align: center;
    margin: 0 auto;
    border-radius: 5px
}

.ft-contact-block-link a:hover {
    opacity: .8
}

.coro_bnr-wrap {
    padding: 30px 0;
    background-color: #dbe7f1
}

.coro_bnr {
    display: grid;
    grid-template-columns: 66.66% 1fr;
    gap: 15px
}

.coro_bnr img {
    max-width: 100%;
    height: auto
}

.coro_bnr a:hover {
    opacity: 80%
}

#itemA {
    grid-row: 1 / 3;
    grid-column: 1 / 2
}

#itemB {
    grid-row: 1 / 2;
    grid-column: 2 / 3
}

#itemC {
    grid-row: 2 / 3;
    grid-column: 2 / 3
}

@media only screen and (max-width:768px) {
    .coro_bnr {
        display: block
    }

    .coro_bnr li {
        margin-bottom: 15px
    }
}

.bt-inner .in-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.bt-inner .in-flex-2 {
    width: 49%;
    margin-bottom: 20px
}

.bt-inner .in-flex-3 {
    width: 32%;
    margin-bottom: 20px
}

@media only screen and (max-width:768px) {
    .bt-inner .in-flex {
        display: block
    }

    .bt-inner .in-flex-2,
    .bt-inner .in-flex-3 {
        width: 100%
    }
}

.bt-inner .in-flex .imgOuter {
    margin-bottom: 30px
}

.bt-inner .in-flex .imgOuter img {
    width: 100%;
    height: auto
}

.bt-inner .in-flex dl {
    display: table;
    text-align: left;
    width: 100%;
    border-top: 1px solid #ff6ba1;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 20px;
    padding: 8px 15px;
    box-sizing: border-box
}

.bt-inner .in-flex dl dt {
    color: #ff6ba1;
    width: 10%;
    font-size: 50px;
    font-weight: 500;
    display: table-cell;
    vertical-align: middle;
    padding-right: 15px
}

.bt-inner .in-flex dl dd {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    display: table-cell;
    vertical-align: middle;
    line-height: 1.4
}

.bt-speck {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    width: 100%;
    margin-bottom: 40px
}

.bt-speck table {
    width: 100%
}

.bt-speck th {
    background: #e4e4e4;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    text-align: center;
    padding: 10px 10px;
    width: 20%
}

.bt-speck td {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 10px 10px
}

.balloon1 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 12px 20px;
    min-width: 120px;
    max-width: 100%;
    color: #fff;
    font-size: 2rem;
    background: #07428a;
    border-radius: 6px
}

.balloon1:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #07428a
}

.balloon-p {
    margin: 0;
    padding: 0;
    line-height: 1.8em
}

.balloon2 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 12px 20px;
    min-width: 120px;
    max-width: 100%;
    color: #fff;
    font-size: 2rem;
    background: #ff8c00;
    border-radius: 6px
}

.orange-text {
    color: #ff8c00
}

.main_visual-pict {
    background-color: #f0f8ff;
    background-size: contain
}

.text_pict {
    font-size: 2rem;
    line-height: 1.2em;
    text-align: center;
    margin: 0 0 3% 0;
    font-weight: 700
}

.text_pict02 {
    font-size: 2.7em;
    line-height: 1.2em;
    text-align: center;
    margin: 0 0 3% 0;
    font-weight: 700;
    color: #07428a
}

.text_pict3L {
    font-size: 1.5rem;
    line-height: 1.5em;
    text-align: left;
    margin-left: 15%;
    margin-right: 15%
}

.parent-center-pict {
    padding: 0 15px 0;
    text-align: center
}

.parent-center-pict-bg {
    padding: 0 15px 0;
    text-align: center;
    margin: 0 auto
}

.space-1em {
    height: 1em
}

.space-2em {
    height: 2em
}

.space-4em {
    height: 4em
}

.space-8em {
    height: 8em
}

.main_visual_blue {
    background-image: url(https://3rrr-btob.jp/wp-content/uploads/2022/06/inner-blue.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle
}

.inner-bg-blue {
    background-image: url(https://3rrr-btob.jp/wp-content/uploads/2022/06/inner-blue.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: middle
}

.pict-hr {
    border-top: .5px solid #8c8b8b
}

.child-flame-pict {
    display: flex;
    justify-content: space-around
}

.contact-btn02 {
    display: flex;
    align-items: flex-end;
    justify-content: space-evenly
}

.contact-bnr02 {
    background-color: white
}

.balloon2:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #ff8c00
}

.plan-group-pc-pict {
    display: flex;
    justify-content: center;
    width: 800px;
    margin: 0 auto
}

.pict-button-shadow--orange {
    min-width: 95%;
    height: 50px;
    color: #fff;
    padding: 5px 10px;
    margin: 3px 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    display: inline-block;
    outline: 0;
    border: 0;
    background-color: #ff8c00;
    box-shadow: 0 3px 1px -2px #ccc, 0 2px 2px 0 #ccc, 0 1px 5px 0 #ccc
}

.pict-button-shadow--orange:active {
    box-shadow: 0 4px 2px -3px #ccc, 0 4px 5px 1px #ccc, 0 2px 7px 1px #ccc
}

.pict-copy {
    font-size: 4rem;
    text-align: center;
    font-weight: bold;
    margin: 8% 0;
    line-height: 1.5em;
    margin-top: 0
}

.feature-pict {
    background-color: #f0f8ff;
    padding-top: 40px
}

.lead-pict {
    background-color: #07428a;
    padding: 5px 20px;
    color: #fff;
    font-weight: bold;
    font-size: 2rem;
    margin: 0 0 20px;
    width: 60%;
    text-align: center
}

.boxstyle-pict {
    padding: .5em 1em;
    margin: 2em 0;
    color: #fff;
    background: #07428a;
    margin: 0 auto
}

.pict-button-shadow--blue {
    min-width: 400px;
    height: 50px;
    color: #fff;
    padding: 5px 10px;
    margin: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    display: inline-block;
    outline: 0;
    border: 0;
    background-color: #07428a;
    box-shadow: 0 3px 1px -2px #ccc, 0 2px 2px 0 #ccc, 0 1px 5px 0 #ccc;
    border-radius: 8px
}

.border-center-pict {
    text-align: center;
    border: solid;
    width: 78%;
    margin: 0 auto;
    border-color: #07428a;
    padding-top: 20px;
    padding-bottom: 20px
}

@media screen and (max-width:950px) {
    .parent-center-pict-bg .img {
        text-align: center;
        width: 70%;
        margin: 0 auto
    }
}

@media screen and (max-width:768px) {
    .pict-copy {
        font-size: 2rem
    }

    .balloon-p {
        font-size: 1.4rem
    }

    .child-flame-pict {
        width: 100%
    }

    .child-flame {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between
    }

    .pict-button-shadow--blue {
        min-width: 300px
    }

    .border-center-pict {
        width: 100%
    }

    .pict-button-shadow--orange {
        min-width: 335px;
        margin: 2px 10px
    }

    .pict-logo {
        width: 50%;
        margin: 0 auto
    }
}

.button005 a {
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 220px;
    padding: 10px 25px;
    color: #FFF;
    transition: .3s ease-in-out;
    font-weight: 600;
    background: #95cafc;
    background: linear-gradient(270deg, rgba(149, 202, 252, 1) 0, rgba(107, 182, 255, 1) 100%)
}

.button005 a:hover {
    background: #75bcff;
    background: linear-gradient(270deg, rgba(117, 188, 255, 1) 0, rgba(62, 159, 252, 1) 100%)
}

.column-button {
    background: #f69d71;
    background-image: -webkit-linear-gradient(top, #9c0000, #970000);
    background-image: -moz-linear-gradient(top, #9c0000, #970000);
    background-image: -ms-linear-gradient(top, #9c0000, #970000);
    background-image: -o-linear-gradient(top, #9c0000, #970000);
    background-image: linear-gradient(to bottom, #9c0000, #970000);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    padding: 20px 40px;
    margin: 20px 0;
    text-shadow: 1px 1px 1px #000;
    border: solid #692626 1px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    text-align: center
}

.column-button:hover {
    background: #d02323;
    background-image: -webkit-linear-gradient(top, #720a00, #820000);
    background-image: -moz-linear-gradient(top, #720a00, #820000);
    background-image: -ms-linear-gradient(top, #720a00, #820000);
    background-image: -o-linear-gradient(top, #720a00, #820000);
    background-image: linear-gradient(to bottom, #720a00, #820000);
    text-decoration: none
}

@media print {

    header,
    footer,
    #navigation,
    #breadcrumb,
    #topback a,
    .btnWrapNav,
    chat {
        display: none
    }
}

.column-contents {
    line-height: 1.6
}

.column-left>p img {
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px auto
}

img.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

.column-contents img {
    max-width: 100%;
    height: auto
}

@media screen and (max-width:768px) {
    .column-contents img {
        height: auto
    }
}

.column-contents p {
    margin-bottom: 1.5em;
}

.column-contents table {
    margin-bottom: 20px;
    width: auto !important;
    height: auto !important
}

.column-contents table td,
.column-contents table th {
    width: auto !important;
    height: auto !important;
    padding: 10px
}

.column-contents .inner {
    display: flex;
    justify-content: space-between
}

.column-contents .column-left {
    width: 68.3333333%
}

.column-left h1 {
    font-size: 200%;
    line-height: 1.4em;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: solid 1px #e7e6e6;
    font-weight: bold
}

.column-left h2 {
    font-size: 170%;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: bold;
    border-left: 5px solid #ed1c23;
    padding-left: 8px
}

.column-left h3 {
    font-size: 130%;
    color: #ed1c23;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: bold
}

.column-left h4 {
    font-size: 120%;
    font-weight: bold
}

.column-contents .column-right {
    width: 30%;
    max-width: 350px;
    font-size: 1.2rem;
    position: -webkit-sticky;
    position: sticky;
    top: 10px;
    align-self: baseline
}

.column-contents .column-right-block {
    background-color: #f6f6f6;
    padding: 15px;
    margin-bottom: 20px
}

.column-contents .column-right-bnr {
    background-color: #f6f6f6;
    padding: 15px;
    margin-bottom: 20px
}

.column-right-block-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: #6f6f6f 1px dotted
}

.column-right-category li a {
    display: block;
    padding: 10px 0 10px 15px;
    border-bottom: #6f6f6f 1px dotted;
    position: relative
}

.column-right-category li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border: 3px solid transparent;
    border-left: 6px solid #e70a03
}

.column-right-pickup {
    counter-reset: number
}

.column-right-pickup li {
    padding-bottom: 10px;
    margin-top: 10px;
    border-bottom: #6f6f6f 1px dotted;
    position: relative;
    padding-left: 35px
}

.column-right-pickup li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    counter-increment: number;
    content: counter(number);
    background-color: #efefef;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    width: 30px;
    height: 40px;
    line-height: 40px;
    text-align: center
}

.column-right-pickup li:nth-of-type(1)::before {
    background-color: #f2d00c
}

.column-right-pickup li:nth-of-type(2)::before {
    background-color: #cdcdcd
}

.column-right-pickup li:nth-of-type(3)::before {
    background-color: #dbb58d
}

.column-right-pickup li a {
    display: block
}

.column-right-pickup li a:hover {
    opacity: .7
}

.column-right a img:hover {
    opacity: .7
}

@media screen and (max-width:768px) {
    .column-left {
        overflow-x: auto
    }

    .column-contents .inner {
        display: block
    }

    .column-contents .column-left,
    .column-contents .column-right {
        width: 100%;
        margin-bottom: 30px
    }
}

.column-headTitle-wrap {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-feature-settings: "palt";
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 3% 10px;
    margin-bottom: 10px;
    background-image: url(/wp-content/themes/3rrrbtob/img/pmaga-topbg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.column-headTitle {
    font-size: 3.6rem;
    line-height: 1em;
    margin-bottom: 20px
}

.column-headTitle span {
    font-size: 1.6rem;
    color: #ed1c23
}

.column-headTitle-sub {
    font-size: 2rem;
    font-weight: 500
}

.column-categorys a {
    display: inline-block;
    background-color: #ed1c23;
    padding: 5px 8px;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1em;
    margin-bottom: 5px
}

.column-tags {
    margin-bottom: 20px
}

.column-tags li {
    display: inline-block;
    background-color: #b4976f;
    padding: 5px 8px;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1em;
    margin-bottom: 5px;
    margin-right: 8px
}

.column-tags li:before {
    content: "#"
}

.column-outline {
    background-color: #f6f6f6;
    padding: 4%;
    display: flex
}

.column-outline dt {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.column-outline dd {
    border-left: solid 1px #e7e6e6;
    padding-left: 20px;
    margin-left: 20px
}

.ft-fix-cv {
    position: fixed;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #313131;
    padding: 15px 0;
    font-size: 16px;
    font-weight: bold;
    bottom: 0;
    left: 0;
    z-index: 10;
    transition-duration: .4s;
    font-size: calc(12px+4 *(100vw - 500px) / 600)
}

.ft-fix-cv div,
.ft-fix-cv ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.ft-fix-cv ul {
    margin-left: auto
}

.ft-fix-cv.none {
    opacity: 0;
    bottom: -200px
}

.ft-fic-cv-tell {
    margin-right: 15px
}

.cvbtn01,
.cvbtn02,
.cvbtn03 {
    display: block;
    border-radius: 4px;
    padding: 15px 35px 15px 25px;
    margin-right: 10px;
    line-height: 1em;
    position: relative
}

.cvbtn01 {
    background-color: #249acc;
    color: #FFF;
    border-bottom: #117dab 2px solid
}

.cvbtn02 {
    background-color: #d02b2f;
    color: #FFF;
    border-bottom: #a20002 2px solid
}

.cvbtn03 {
    background-color: rgba(235, 236, 237);
    color: #333;
    border-bottom: #cbcbcb 2px solid
}

.cvbtn01::after,
.cvbtn02::after {
    top: 50%;
    right: 15px;
    margin-top: -4px;
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid #FFF;
    border-top: 2px solid #FFF;
    display: inline-block;
    transform: rotate(45deg);
    margin-left: 15px
}

.cvbtn03::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid #333;
    border-top: 2px solid #333;
    display: inline-block;
    transform: rotate(45deg);
    margin-left: 15px
}

.cvbtn01:hover,
.cvbtn02:hover,
.cvbtn03:hover {
    opacity: .7
}

@media screen and (max-width:768px) {
    .ft-fix-cv {
        display: none
    }

    .column-contents table td {
        white-space: nowrap
    }

    .column-contents table tr td:first-child {
        white-space: nowrap
    }
}

.column-cv {
    margin: 50px auto;
    text-align: center
}

.column-cv img {
    width: 100%;
    height: auto
}

.column-cv img:hover {
    opacity: .7
}

.column-osusume-item {
    margin-top: 30px;
    padding-top: 30px;
    border-top: #6f6f6f 1px dotted
}

.column-osusume-item ul {
    display: flex;
    gap: 10px;
    background-color: #f2f2f2;
    padding: 10px
}

.column-osusume-item ul li {
    display: flex;
    flex-direction: column;
    background-color: #FFF;
    padding: 20px;
    flex: 1;
    width: 100%;
    box-shadow: 0 0 10px -5px #b3b3b3;
    border-radius: 4px
}

@media screen and (max-width:768px) {
    .column-osusume-item ul {
        display: block;
        padding: 10px
    }

    .column-osusume-item ul li {
        display: flex;
        margin-bottom: 5px;
        flex-wrap: wrap
    }

    .column-osusume-item .osusume-item-image {
        width: 20%;
        order: 1
    }

    .column-osusume-item .osusume-item-neme {
        width: 70%;
        order: 2;
        margin-left: 10px
    }

    .column-osusume-item .osusume-item-comment {
        width: 100%;
        order: 3
    }

    .column-osusume-item a {
        order: 4
    }
}

.column-osusume-item-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px
}

.column-osusume-item .osusume-item-comment {
    font-size: 1.2rem;
    flex-grow: 1
}

.column-osusume-item .osusume-item-image {
    margin: 10px 0;
    flex-grow: 1
}

.column-osusume-item .osusume-item-neme {
    font-size: 1.2rem;
    font-weight: bold;
    flex-grow: 1
}

.column-osusume-item a {
    width: 100%;
    text-align: center;
    font-weight: 900;
    border: 0;
    border-radius: 6px;
    background-color: #ffd600;
    box-shadow: 0 3px 0 #fbc02d;
    cursor: pointer;
    font-size: 1.4rem;
    color: #2f2f2f;
    padding: 5px;
    margin: 10px 0 0 0;
    display: block
}

.column-osusume-item a:hover {
    box-shadow: 0 0 0 #fbc02d;
    background-color: #f8e060
}

.column-other {
    margin-top: 30px;
    padding-top: 30px;
    border-top: #6f6f6f 1px dotted
}

.column-other-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px
}

.catalog {
    display: flex;
    justify-content: space-between
}

.catalog-left {
    width: 45%;
    font-size: 1.4rem
}

.catalog img {
    width: 100%;
    height: auto
}

.catalog-right {
    width: 50%;
    padding: 20px;
    border: #e4e4e4 5px solid;
    border-radius: 8px;
    align-self: baseline
}

@media only screen and (max-width:768px) {
    .catalog {
        flex-wrap: wrap
    }

    .catalog-right {
        order: 0;
        width: 100%
    }

    .catalog-left {
        order: 1;
        width: 100%
    }
}

.contact-lead {
    font-size: 1.6rem;
    font-weight: bold
}

.ad_get_title {
    font-weight: bold;
    margin-top: 10px
}

.contact-list {
    font-weight: bold
}

.contact-list li {
    position: relative;
    padding-left: 15px
}

.contact-list li:before {
    content: "";
    position: absolute;
    top: .1em;
    left: 0;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    width: 5px;
    height: 10px;
    border-right: 3px solid #249783;
    border-bottom: 3px solid #249783
}

.osusume_bnr-wrap {
    border-top: 1px solid #f2f2f2;
    padding: 30px 0
}

.osusume_bnr {
    display: flex;
    justify-content: space-between
}

.osusume_bnr li {
    padding: 5px
}

.osusume_bnr a:hover {
    opacity: 80%
}

.osusume_bnr img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 1px 4px rgb(0 0 0/10%);
    border-radius: 6px;
}

@media only screen and (max-width:768px) {
    .osusume_bnr-wrap {
        border-top: 1px solid #f2f2f2;
        padding: 10px 0;
        overflow: hidden;
        overflow-x: scroll
    }

    .osusume_bnr {
        flex-wrap: nowrap;
        width: 100%;
        margin: 0;
        padding: 10px;
        box-sizing: border-box
    }

    .osusume_bnr li {
        padding: 5px;
        margin-bottom: 5px;
        min-width: 50%
    }

    .osusume_bnr:after {
        content: "";
        display: block;
        width: 50%;
        height: 0
    }
}

.item_header_body {
    flex-basis: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px
}

@media only screen and (max-width:768px) {
    .item_header_body {
        display: block
    }
}

.item_header_body .imgFlexWrap {
    max-width: 450px;
    -webkit-flex-basis: 450px;
    flex-basis: 450px;
    margin-right: 40px;
    height: auto;
    display: block;
    position: relative;
    overflow: hidden;
    transition: .6s;
    opacity: 1;
    -webkit-transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1)
}

@media only screen and (max-width:768px) {
    .item_header_body .imgFlexWrap {
        width: 100%;
        max-width: 100%;
        -webkit-flex-basis: 100%;
        flex-basis: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        order: 1
    }
}

.slider01>li:not(:first-child) {
    display: none
}

.item_header_body .imgFlexWrap .slideMain .slick-prev {
    background: url(../img/arrow_mainvisual_left.png) no-repeat 0 0
}

@media only screen and (max-width:768px) {
    .item_header_body .imgFlexWrap .slideMain .slick-prev {
        background-size: 10px;
        right: auto;
        left: 5px;
        top: 48%;
        bottom: 0;
        height: auto
    }
}

.item_header_body .imgFlexWrap .slideMain .slick-next {
    background: url(../img/arrow_mainvisual_right.png) no-repeat 0 0
}

@media only screen and (max-width:768px) {
    .item_header_body .imgFlexWrap .slideMain .slick-next {
        background-size: 10px;
        right: 5px;
        left: auto;
        top: 48%;
        bottom: 0;
        height: auto
    }
}

.item_header_body .imgFlexWrap li .img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    transition: .6s;
    opacity: 1;
    -webkit-transition: opacity .4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity .4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #cdcbc4;
    box-sizing: border-box
}

.item_header_body .imgFlexWrap li .img:before {
    content: '';
    display: block;
    padding-top: 68%
}

.item_header_body .imgFlexWrap li .img span {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: .6s;
    transition: .6s;
    background: url() center no-repeat #e5e5e5
}

.item_header_body .imgFlexWrap .slideSub {
    min-height: 60px
}

.item_header_body .imgFlexWrap .slideSub ul {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap
}

.animoSpinner {
    border: 4px solid #e5edff;
    border-left-color: #e70a03;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spinner1 1.2s linear infinite
}

@keyframes spinner1 {
    0 {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.item_header_body .imgFlexWrap .slideSub ul li {
    width: 18.6%;
    max-height: 60px;
    margin: 0 .7%
}

.item_header_body .imgFlexWrap .slideSub ul li .img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    transition: .6s;
    opacity: 1;
    -webkit-transition: opacity .4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity .4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #cdcbc4;
    box-sizing: border-box
}

.item_header_body .imgFlexWrap .slideSub ul li .img:before {
    content: '';
    display: block;
    padding-top: 68%
}

.item_header_body .imgFlexWrap .slideSub ul li .img span {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: .6s;
    transition: .6s;
    background: url() center no-repeat #e5e5e5
}

.item_header_body .productBuyWrap {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-basis: 300px;
    flex-basis: 300px;
    text-align: left
}

.item_header_body .productBuyWrap .btnMain p {
    display: none
}

.item_header_body .productBuyWrap .name {
    margin-bottom: 20px
}

@media only screen and (max-width:768px) {
    .item_header_body .productBuyWrap .name {
        margin-bottom: 15px
    }
}

.item_header_body .productBuyWrap .name dl dt {
    font-size: 16px;
    color: #5c5652;
    margin-bottom: 5px
}

.item_header_body .productBuyWrap .name dl dd {
    font-size: 20px;
    font-weight: bold
}

@media only screen and (max-width:768px) {
    .item_header_body .productBuyWrap .name dl dt {
        font-size: 14px;
        margin-bottom: 5px
    }

    .item_header_body .productBuyWrap .name dl dd {
        font-size: 16px
    }
}

.item_header_body .productBuyWrap .priceOuter {
    margin-bottom: 20px;
    margin-top: 20px
}

.item_header_body .productBuyWrap .priceOuter li {
    font-size: 15px;
    margin-top: 5px;
    padding-bottom: 5px;
    flex-basis: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: dotted 1px #5c5652
}

@media only screen and (max-width:768px) {
    .item_header_body .productBuyWrap .priceOuter li {
        font-size: 14px
    }
}

.item_header_body .productBuyWrap .priceOuter li:first-child {
    margin-top: 0
}

.item_header_body .productBuyWrap .priceOuter li:after {
    content: '';
    display: table;
    clear: both
}

.item_header_body .productBuyWrap .priceOuter li .leftG {
    display: block;
    margin-bottom: 0
}

.item_header_body .productBuyWrap .priceOuter li .rightG {
    display: block;
    position: relative;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-basis: 100px;
    flex-basis: 100px;
    text-align: left
}

.item_header_body .productBuyWrap .item-botun {
    display: flex;
    align-items: stretch;
    flex: 1 0 auto
}

.item_header_body .productBuyWrap .item-botun li {
    width: 25%;
    height: 100%
}

.item_header_body .productBuyWrap .item-botun i {
    margin-bottom: 10px;
    display: block;
    opacity: .5
}

.item_header_body .productBuyWrap .item-botun a {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    display: block;
    border-radius: 4px;
    padding: 15px 10px;
    margin-right: 10px;
    line-height: 1em;
    background-color: #e70a03;
    color: #fff;
    border-bottom: #cbcbcb 2px solid;
    position: relative;
    box-sizing: border-box
}

.item_header_body .productBuyWrap .item-botun a.color-yll {
    background-color: #f7bd4d;
    color: #432d00;
    border-bottom: #cd8f11 2px solid
}

.item_header_body .productBuyWrap .item-botun a:hover {
    opacity: .6
}

.fontsize-ss {
    font-size: 1.2rem
}

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

    /* ページ下部にスペースを確保（固定ボタン用） */
    body.product_detail {
        padding-bottom: 110px;
    }

    /* 固定ボタンスタイル */
    .product_detail .item_header_body .item-botun {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        padding: 8px;
        z-index: 9999;
        display: flex;
        flex-wrap: nowrap;
        gap: 4px;
        max-height: 80px;
        overflow: hidden;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .product_detail .item_header_body .item-botun li {
        flex: 1;
        min-width: 0;
        width: auto;
        margin-bottom: 0;
    }

    .product_detail .item_header_body .item-botun a {
        padding: 10px 4px;
        font-size: 11px;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        text-align: center;
        line-height: 1.2;
        min-height: 60px;
        justify-content: center;
        align-items: center;
        margin-right: 0;
        border-bottom: none;
        box-sizing: border-box;
        transition: all 0.2s ease;
    }

    .product_detail .item_header_body .item-botun i {
        margin-right: 0;
        margin-bottom: 4px;
        display: block;
        font-size: 18px;
        opacity: 1;
    }

    /* ボタン数に応じた調整 */
    .product_detail .item_header_body .item-botun:has(li:nth-child(2):last-child) a {
        font-size: 12px;
        padding: 12px 8px;
    }

    .product_detail .item_header_body .item-botun:has(li:nth-child(3):last-child) a {
        font-size: 11px;
        padding: 10px 6px;
    }

    .product_detail .item_header_body .item-botun:has(li:nth-child(4):last-child) a {
        font-size: 10px;
        padding: 8px 4px;
    }

    .product_detail .item_header_body .item-botun a:active {
        transform: scale(0.95);
        opacity: 0.8;
    }

    .product_detail .item_header_body .item-botun a:hover {
        opacity: 0.8;
        transform: none;
    }
}

/* 非常に小さい画面用の調整 */
@media screen and (max-width: 360px) {
    .item_header_body .productBuyWrap .item-botun:has(li:nth-child(4):last-child) a {
        font-size: 9px;
        padding: 6px 2px;
    }

    .item_header_body .productBuyWrap .item-botun:has(li:nth-child(4):last-child) i {
        font-size: 16px;
        margin-bottom: 2px;
    }
}

/* 横向き時の調整 */
@media screen and (max-width: 768px) and (orientation: landscape) {
    body {
        padding-bottom: 70px;
    }

    .item_header_body .productBuyWrap .item-botun {
        max-height: 70px;
        padding: 6px;
    }

    .item_header_body .productBuyWrap .item-botun a {
        min-height: 50px;
        padding: 8px 4px;
        font-size: 10px;
    }

    .item_header_body .productBuyWrap .item-botun i {
        font-size: 16px;
        margin-bottom: 2px;
    }
}

.relationWrap {
    overflow: hidden
}

.slideMain * {
    min-height: 0;
    min-width: 0
}

.full-item-list {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0
}

.full-item-list::after {
    content: "";
    flex: 1
}

.full-item-list li {
    flex: 0 0 calc(25% - 20px);
    margin: 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    padding: 20px
}

.full-item-list .full-item-list-pic {
    margin-bottom: 10px
}

.full-item-list .full-item-list-pic img {
    max-width: 100%;
    height: auto
}

.full-item-list .full-item-list-txt {
    word-break: break-word
}

.full-item-list .genre-links {
    margin-bottom: 10px
}

.full-item-list .genre-links a {
    display: inline-block;
    color: #5c5652;
    padding: 5px;
    margin-right: 5px;
    font-size: 80%;
    line-height: 1;
    background: #e9e9e9
}

@media only screen and (max-width:768px) {
    .full-item-list .full-item-list-pic {
        margin-bottom: 5px
    }
}

.hs-dependent-field {
    background-color: #ffe6e6;
    padding: 5px;
}

.prz-sns {
    display: flex;
    margin: 0 0 20px 0;
    justify-content: space-between;
}

.prz-sns a {
    margin-top: 10px;
    text-align: center;
    width: 100%;
}

.btn-line {
    display: inline-flex;
    align-items: center;
    background-color: #00c300;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    position: relative;
    border-bottom: #cbcbcb 2px solid;
    line-height: 1;
}

.btn-line::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('https://3rrr-btob.jp/wp-content/themes/3rrrbtob/img/line_icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    align-self: center;
}

.btn-insta {
    display: inline-flex;
    align-items: center;
    background-color: #e1306c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    position: relative;
    border-bottom: #cbcbcb 2px solid;
    line-height: 1;
}

.btn-insta::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('https://3rrr-btob.jp/wp-content/themes/3rrrbtob/img/sns_instagram.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    align-self: center;
}

.prz-sns {
    display: none;
}

@media (max-width: 768px) {
    .prz-sns {
        display: block;
    }
}

/*プロマガページ用フォーム*/
.maga-form {
    background-color: #f7f7f7;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-sizing: border-box;
    margin-top: 40px;
    margin-bottom: 20px;
}

.maga-form h3 {
    text-align: center;
    font-size: 160%;
    margin-top: 0;
    margin-bottom: 2rem;
    color: #ed1c23;
    font-weight: bold;
}

.maga-form-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.hub_spot-form {
    flex: 3;
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    min-width: 300px;
    box-sizing: border-box;
}

.hub_spot-form * {
    background-color: white !important;
}

.hub_spot-image {
    flex: 1;
    min-width: 200px;
}

.hub_spot-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .hub_spot-image {
        display: none;
    }
}

.repair-jp-ico {
    font-size: 60%;
    color: #FFF;
    background-color: #e81010;
    padding: 4px 10px;
    margin-left: 10px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

.product_sort .resultWrap .resultBody .article .in .mainText ul li.n_red,
.product_sort .resultWrap .resultBody .article .in .mainText ul li.repair_jp {
    background-color: color: #FFF;
    background-color: #e81010;
    font-weight: bold;
}

.product_sort .resultWrap .resultBody .article .in .mainText ul li.n_red a,
.product_sort .resultWrap .resultBody .article .in .mainText ul li.repair_jp a {
    color: #fff;
}

.product_sort .resultWrap .resultBody .article .in .mainText ul li {
    margin-bottom: .5%;
}

.prmg-cta-section {
    background: linear-gradient(135deg, #fbe9e9, #fff0f0);
    padding: 60px 20px;
    border-radius: 12px;
    margin: 60px auto;
}

.prmg-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.prmg-cta-image img {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
}

.prmg-cta-content {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.prmg-cta-content h2 {
    margin-bottom: 20px;
    color: #333;
    border-left: none;
    /* 赤い線を消す */
    padding-left: 0;
    /* 左の余白もリセット */
}

.prmg-cta-content p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
}

.prmg-cta-button {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    padding: 18px 20px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #d50000;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.prmg-cta-button:hover {
    background: #b00000;
}


/* --- Sticky Tabs Revised Implementation --- */
.tabs-fixed-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 2147483647 !important;
    background-color: #f2f2f2 !important;
    border-bottom: 1px solid #c8c8c8 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Match the original .sec .headTitle._tabHeader .inner context */
.tabs-fixed-container .inner {
    padding-top: 20px !important;
    padding-bottom: 0 !important;
    /* Ensure buttons sit on the border */
}

/* DO NOT override design properties (width, padding, etc.) for tabs themselves.
   The original style.css will apply naturally because the JS recreates the .sec hierarchy. */

.is-fixed-tab .tabBtn {
    margin-bottom: 0 !important;
    /* Remove any margin that might cause a gap */
}

/* Small correction to ensure the 'is_active' tab joins the bottom border perfectly */
.is-fixed-tab .tabBtn li a.is_active {
    margin-bottom: -1px !important;
    z-index: 2147483648 !important;
    /* Above container border */
}

.tabsWrap.is-fixed-tab {
    width: 100% !important;
    display: block !important;
}

/* --- End Sticky Tabs --- */

/* ==========================================================================
/* ==========================================================================
   Mega Menu Refactoring (Design Match - Red Theme)
   ========================================================================== */

/* Mega Menu Container */
.gnav-has-mega {
    position: static;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    /* White background */
    z-index: 1000;
    padding: 60px 0;
    /* More padding as per design */
    border-top: 1px solid #eee;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
}

.gnav-has-mega:hover .mega-menu {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mega-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Layout Split */
.mega-menu-layout {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

/* Left Side (Header & Button) */
.mega-menu-left {
    width: 15%;
    /* Narrower left side */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 10px;
}


.mega-title-en {
    font-family: 'Noto Sans JP', sans-serif;
    /* Or a specific font if needed */
    font-size: 1.5rem;
    /* Reduced from 2rem */
    color: #e70a03;
    /* Brand Red */
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 700;
    /* Increased weight */
}

/* ... existing styles ... */

/* Responsive adjustment for screens smaller than 1200px */
@media screen and (max-width: 1200px) {
    .mega-menu-inner {
        padding: 0 15px;
    }

    .mega-menu-layout {
        flex-direction: column;
    }

    .mega-menu-left {
        width: 100%;
        margin-bottom: 20px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 0;
    }

    .mega-menu-left h2.mega-title-en {
        margin-bottom: 0;
        margin-right: 15px;
        font-size: 1.8rem;
    }

    .mega-title-ja {
        margin-bottom: 0;
        margin-right: auto;
    }

    .mega-menu-right {
        width: 100%;
    }

    .category-list-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        /* Switch to 2 columns on smaller screens */
        column-gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .category-list-grid-3 {
        grid-template-columns: 1fr;
        /* Switch to 1 column on mobile */
    }

    .mega-menu-left {
        flex-wrap: wrap;
    }

    .mega-menu-left h2.mega-title-en {
        width: 100%;
        margin-bottom: 5px;
    }
}


.mega-title-ja {
    font-size: 0.85rem;
    /* Reduced from 1rem */
    color: #9e9e9e;
    /* Gray subtitle */
    margin-bottom: 50px;
    display: block;
}

.mega-left-link,
.back-to-categories-btn {
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 15px;
    font-size: 1rem;
    color: #e70a03;
    /* Brand Red */
    text-decoration: none !important;
    font-weight: bold;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.mega-left-link:hover,
.back-to-categories-btn:hover {
    opacity: 0.8;
}

/* Reset global gnav span styles that interfere */
.gnav .mega-menu .mega-left-link span,
.gnav .mega-menu .back-to-categories-btn span {
    position: static !important;
    display: flex !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
    /* Ensure it stays white */
}

/* Specific override for the circle icon span itself - removed orphaned properties */

.circle-icon {
    /* Base styles (fallback) */
    width: 35px;
    height: 35px;
    border: 1px solid #e70a03;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: #e70a03;
    font-size: 1rem !important;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-sizing: border-box;
    text-align: center;
    float: none;
}

.circle-icon i {
    /* Explicitly reset all properties that might shift position */
    line-height: 1;
    margin: 0;
    padding: 0;
    display: inline-block;
    /* Standard FA display */
    float: none;
    text-align: center;
    width: auto;
    height: auto;
    border: none;
    vertical-align: middle;
    transition: transform 0.3s ease;
    /* Add transition for the icon itself */
}

.mega-left-link:hover .circle-icon {
    background-color: #e70a03;
    color: #fff;
}

.mega-left-link:hover .circle-icon i {
    transform: translateX(5px);
    /* Move right icon */
}

.back-to-categories-btn:hover .circle-icon {
    background-color: #e70a03;
    color: #fff;
}

.back-to-categories-btn:hover .circle-icon i {
    transform: translateX(-5px);
    /* Move left icon */
}


/* Right Side (Category Grid) */
.mega-menu-right {
    width: 82%;
    /* Wider content area */
}

.category-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columns */
    column-gap: 60px;
    padding-bottom: 20px;
}

.category-list-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.category-list-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.category-list-item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
    /* Light divider line */
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-list-item:hover {
    border-bottom-color: #e70a03;
    /* Highlight border on hover */
}

/* Item Image Area */
.item-img {
    width: 80px;
    height: 60px;
    background-color: #f7f7f7;
    /* Light Gray */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    border-radius: 4px;
}

.item-img i {
    font-size: 1.2rem !important;
    color: #555;
    transition: color 0.3s ease;
}

.item-img img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-list-item:hover .item-img i {
    color: #e70a03;
}

/* Item Text Area */
.item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
}

.item-ja {
    font-size: 1rem;
    color: #333;
    font-weight: normal;
    margin-bottom: 0;
    /* Remove margin as EN text is gone */
    transition: color 0.3s ease;
}

.item-en {
    font-size: 0.85rem;
    color: #333;
    /* Darker than grey */
    font-weight: bold;
    /* Make EN text bolder/prominent */
}

.category-list-item:hover .item-ja {
    color: #e70a03;
    font-weight: bold;
}

/* Item Arrow */
.item-arrow {
    color: #e70a03;
    font-size: 1.2rem;
    /* Reverted size */
    margin-left: 15px;
    transform: translateX(0);
    transition: transform 0.3s ease;
    /* Reverted transition */
}

.category-list-item:hover .item-arrow {
    transform: translateX(5px);
    /* Reverted movement */
}

/* Level 2 Panel */
/* The existing logic handles display:none/block */
.mega-subcategory-panel {
    /* Style updates to match new clean look */
    background: #fff;
    width: 100%;
}

/* ==========================================================================
   Header Search Refinement
   ========================================================================== */
.header-search-large {
    margin-left: 20px;
    flex-grow: 1;
    max-width: 500px;
    /* Limit max width */
}

.header-search-large form {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 2px 2px 2px 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.header-search-large form:focus-within {
    border-color: #e70a03;
    box-shadow: 0 4px 12px rgba(231, 10, 3, 0.08);
}

.header-search-large .search-window__input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    outline: none;
    font-family: 'Noto Sans JP', sans-serif;
}

.header-search-large .search-submit-btn {
    background: #222;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.05em;
    font-family: 'Outfit', 'Noto Sans JP', sans-serif;
}

.header-search-large .search-submit-btn:hover {
    background: #e70a03;
    transform: none;
}


/* ==========================================================================
   Conversion Buttons (CV Buttons)
   ========================================================================== */
.gnav-cv-btn {
    width: auto !important;
    /* Override default width */
    margin: 0 5px;
}

.gnav-cv-btn a {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2px 28px !important;
    border-radius: 4px;
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none !important;
}

.gnav-demo a {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.2);
}

.gnav-estimate a {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
}

.gnav-cv-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    filter: brightness(1.05);
}

.gnav-cv-btn a span {
    font-size: 10px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.25);
    padding: 1px 10px;
    border-radius: 10px;
    margin-top: 4px;
    display: inline-block;
    width: auto;
    border: none !important;
}

.gnav-contact {
    margin-left: 10px;
}

.gnav-contact a {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 25px !important;
    border: 1px solid #ddd !important;
    color: #444 !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Outfit', 'Noto Sans JP', sans-serif;
    background: #fff;
}

.gnav-contact a:hover {
    border-color: #e70a03 !important;
    color: #e70a03 !important;
    background: rgba(231, 10, 3, 0.02);
}

/* Fix for small icons in GNAV links */
.gnav>ul>li>a i.fa-chevron-down {
    font-size: 10px !important;
    margin-left: 6px;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

/* ==========================================================================
   PREMIUM REMAKE (Independent) - New Renewal System
   Existing styles are intentionally decoupled via 'nr-' prefix.
   ========================================================================== */

:root {
    --nr-primary: #e70a03;
    --nr-text-dark: #222;
    --nr-text-mid: #444;
    --nr-bg-light: #f8f8f8;
    --nr-border: rgba(0, 0, 0, 0.06);
    --nr-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.03);
    --nr-shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.nr-header {
    background: #fff;
    width: 100%;
    z-index: 1000;
    position: relative;
}

.nr-header-top {
    background: #fff;
    /* 背景を白に変更してロゴを際立たせる */
    border-bottom: 1px solid var(--nr-border);
    font-size: 0.8rem;
}

.nr-header-top-inner {
    display: flex;
    justify-content: space-between;
    /* ロゴと右側エリアを分ける */
    align-items: center;
    padding: 10px 40px;
    height: auto;
    gap: 15px;
}

.nr-header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Header Top Specific Overrides */
.nr-header-top .nr-search-area {
    width: auto;
    max-width: 500px;
    /* Increased max-width */
    min-width: 300px;
}

.nr-header-top .nr-search-form {
    height: 38px;
    /* Increased height (thicker) */
    border-radius: 4px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* Add subtle shadow */
}

.nr-header-top .nr-search-input {
    font-size: 0.9rem;
    /* Slightly larger text */
    padding: 0 5px;
}

.nr-header-top .nr-search-btn {
    display: none;
    /* Hide button text/icon if needed, or keep. Maybe compact style? */
}

/* Re-enable button but make it compact if kept? Or just keep as is but smaller. */
.nr-header-top .nr-search-btn {
    display: block;
    padding: 0 20px;
    font-size: 0.9rem;
    background-color: var(--nr-primary);
    /* Make button red/primary to stand out */
    color: #fff;
    font-weight: bold;
    border-radius: 0 4px 4px 0;
}

.nr-header-top .nr-lang-selector {
    position: relative;
    display: flex;
    align-items: center;
}

/* Divider between Lang and Search */
.nr-header-top .nr-lang-selector::after {
    content: "|";
    margin-left: 15px;
    color: #ccc;
    font-weight: 300;
}

.nr-header-main {
    display: flex;
    justify-content: center;
    /* メニューを中央寄せに（または flex-start） */
    align-items: center;
    padding: 0 40px;
    border-bottom: 1px solid var(--nr-border);
    gap: 0;
    flex-wrap: nowrap !important;
    height: 60px;
    /* メニューのみなので少し高さを抑える */
}

.nr-logo {
    /* margin-right: auto; REMOVED for pure space-between */
    flex-shrink: 0;
}

@media screen and (max-width: 1300px) {
    .nr-header-main {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        grid-template-areas:
            "logo search"
            "logo nav";
        height: auto !important;
        padding: 15px 20px 0;
        column-gap: 20px;
    }

    .nr-logo {
        grid-area: logo;
        align-self: center;
        margin-right: 0;
    }

    .nr-search-area {
        grid-area: search;
        justify-self: end;
        width: auto;
        min-width: 300px;
        /* Ensure decent size */
        margin-bottom: 10px;
    }

    .nr-gnav {
        grid-area: nav;
        justify-self: end;
        width: 100%;
        /* Take full width of cell */
        display: flex;
        justify-content: flex-end;
    }

    .nr-header-sep {
        display: none;
    }

    /* Hide separator in 2-row mode */

    /* Reset/Adjust scaling for 2-row mode */
    .nr-gnav-item>a {
        padding: 0 10px;
        font-size: 1.15rem;
        /* Standard readable size */
        height: 40px;
        /* Reduced height for 2nd row */
    }

    .nr-gnav-cv a {
        height: 36px !important;
        padding: 0 15px !important;
    }
}

@media screen and (max-width: 1024px) {
    .nr-header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 7000;
        width: 100%;
    }

    .nr-header-main {
        display: none !important;
    }

    .nr-header-top-inner {
        padding: 0 15px;
        height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
    }

    .nr-header-top-right {
        display: none !important;
    }

    .nr-header-sp-controls {
        display: flex !important;
    }

    .nr-mobile-trigger {
        display: block !important;
    }

    .nr-logo img {
        height: 28px;
        width: auto;
    }
}

.nr-header-sep {
    width: 1px;
    height: 32px;
    background: #ccc;
    margin: 0 15px;
    flex-shrink: 0;
}

/* .nr-utility-bar, .nr-contact-info, .nr-tel, .nr-hours etc are deprecated or repurposed */

.nr-link-item {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--nr-text-mid);
    text-decoration: none;
    margin-left: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.nr-link-item:hover {
    color: var(--nr-primary);
}

.nr-link-comp::before {
    content: '\f1ad';
    font-family: FontAwesome;
    color: var(--nr-primary);
    font-size: 1rem;
}

.nr-link-shop::before {
    content: '\f290';
    font-family: FontAwesome;
    color: var(--nr-primary);
    font-size: 1rem;
}

/* Lang Selector Custom */
.nr-lang-selector {
    margin-left: 0;
}

.nr-lang-selector select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--nr-bg-light);
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 30px 6px 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #444;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M0 2 L4 6 L8 2' fill='none' stroke='%23888' stroke-width='1.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: all 0.3s ease;
    outline: none;
}

.nr-lang-selector select:hover {
    border-color: var(--nr-primary);
    background-color: #fff;
}

/* Search Area */
.nr-search-area {
    max-width: 416px;
    width: 100%;
    flex-shrink: 1;
    /* Variable length */
    min-width: 180px;
}

.nr-search-form {
    display: flex;
    align-items: center;
    background: #fdfdfd;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    padding: 0 0 0 15px;
    /* Removed right padding to align button */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    /* Ensure button corners match form corners */
}

.nr-search-icon {
    font-size: 1.4rem;
    color: #999;
    margin-right: 4px;
    /* 間隔を詰める */
    flex-shrink: 0;
}



.nr-search-input {
    flex-grow: 1;
    border: none;
    padding: 10px 0;
    font-size: 1.3rem;
    font-weight: 500;
    outline: none;
    background: transparent;
    width: 0;
}

.nr-search-input::placeholder {
    color: #888;
    /* Slightly darker for better visibility */
    font-size: 1.2rem;
    /* One size smaller to fit more text */
    font-weight: 400;
}

.nr-search-btn {
    background: #e70a03;
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 中央寄せ */
    font-size: 1.45rem;
    /* サイズを大きく */
    transition: all 0.3s ease;
    margin: 0;
    white-space: nowrap;
    align-self: stretch;
}

.nr-search-btn:hover {
    background: #f01d16;
}

/* GNAV (1-row Integrated) */
.nr-gnav {
    width: auto;
    background: transparent;
    border-bottom: none;
    position: static;
    flex-shrink: 0;
}

/* Force horizontal layout for nav items */
.nr-gnav-list {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    height: 100% !important;
    gap: 0 !important;
}

.nr-gnav-item {
    position: static !important;
    display: block !important;
    width: auto !important;
    height: 100% !important;
    float: none !important;
}

.nr-gnav-item>a {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 22px;
    color: var(--nr-text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.35rem;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Cover the gap between nav and bottom border to maintain hover */
/* Tied to anchor tag to ensure it's only as wide as the menu item */
.nr-has-mega>a::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
    z-index: 10;
}

.nr-gnav-item:hover>a {
    color: #e70a03 !important;
}

.nr-gnav-item>a i.fa-chevron-down {
    font-size: 1.0rem;
    margin-left: 8px;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.nr-gnav-item:hover i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Red underline effect */
.nr-gnav-item>a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    /* 少し上に浮かせる */
    left: 50%;
    width: 0;
    height: 3px;
    background: #e70a03 !important;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    z-index: 110;
    /* メガメニュー (z-index: 100) より前面に表示 */
}

.nr-gnav-item:hover>a::after,
.nr-gnav-item.nr-active>a::after {
    width: 100%;
}

/* CV Buttons in GNAV */
.nr-gnav-cv {
    margin-left: 10px;
}

.nr-gnav-cv a {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.1;
    padding: 0 15px !important;
    border-radius: 4px;
    color: #fff !important;
    margin: 0;
    height: 44px !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset common menu hover effects for CV buttons */
.nr-gnav-cv:hover>a {
    color: #fff !important;
}

.nr-gnav-cv>a::after {
    display: none !important;
}

.nr-gnav-cv::after {
    display: none !important;
}

.nr-gnav-demo a {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.2);
}

.nr-gnav-estimate a {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
}


.nr-gnav-cv a {
    padding-left: 28px !important;
    /* Widened for better balance */
    padding-right: 28px !important;
}

.nr-gnav-cv a:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.nr-badge {
    font-size: 1.0rem;
    background: rgba(255, 255, 255, 0.25);
    padding: 1px 8px;
    border-radius: 10px;
    margin-top: 4px;
    font-weight: 500;
}

/* Deprecated fixed contact button */
.nr-gnav-contact {
    display: none;
}

/* Mega Menu System (Decoupled - Restored Premium Design) */
.nr-mega-container {
    display: none;
    position: absolute;
    top: 100%;
    /* Dynamic positioning for variable header height */
    padding-top: 1px;
    /* Gap to prevent covering underline */
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    z-index: 100;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    animation: nrFadeInUp 0.3s ease-out;
}

@keyframes nrFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nr-has-mega:hover .nr-mega-container {
    display: block;
}

.nr-mega-menu-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px;
    min-height: 400px;
    overflow: hidden;
}

.nr-mega-menu-layout {
    display: flex;
    justify-content: space-between;
}

.nr-mega-menu-left {
    width: 15%;
    flex-shrink: 0;
}

.nr-mega-title-en,
.nr-mega-title-en-sub {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--nr-primary);
    margin: 0 0 10px 0;
    line-height: 1;
}

.nr-mega-title-en-sub {
    font-size: 2.0rem;
}

.nr-mega-title-ja {
    font-size: 1.1rem;
    font-weight: 700;
    color: #9e9e9e;
    display: block;
    margin-bottom: 50px;
}

.nr-mega-left-link,
.nr-back-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none !important;
    color: #e70a03 !important;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.nr-mega-left-link:hover,
.nr-back-btn:hover {
    opacity: 0.8;
}

.nr-circle-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #e70a03 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nr-mega-left-link:hover .nr-circle-icon,
.nr-back-btn:hover .nr-circle-icon {
    background: #e70a03 !important;
    color: #fff !important;
}

.nr-mega-left-link:hover .nr-circle-icon i {
    transform: translateX(3px);
}

.nr-back-btn:hover .nr-circle-icon i {
    transform: translateX(-3px);
}

.nr-mega-menu-right {
    width: 82%;
}

.nr-category-grid {
    display: grid;
    column-gap: 60px;
}

.nr-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.nr-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.nr-category-item,
.nr-category-card {
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid #e0e0e0;
    padding: 25px 0;
    text-decoration: none;
    color: var(--nr-text-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nr-category-item:hover,
.nr-category-card:hover {
    border-bottom-color: #e70a03 !important;
}

.nr-item-img {
    width: 80px;
    height: 60px;
    background: #e8e8e8;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.25rem;
    color: #e70a03 !important;
    /* Force Red Icons */
    transition: all 0.3s ease;
}

.nr-item-img img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.nr-category-item:hover .nr-item-img,
.nr-category-card:hover .nr-item-img {
    background: #e8e8e8;
    /* Keep background same on hover */
    box-shadow: none !important;
    /* Remove shadow */
}

/* Mega Menu Components */
.nr-item-info {
    flex-grow: 1;
}

/* Mega Menu Restored Colors */
.nr-item-arrow {
    font-size: 1.1rem !important;
    color: #e70a03 !important;
    /* Restored Red Arrow */
    transition: transform 0.3s ease;
}

.nr-category-item:hover .nr-item-arrow,
.nr-category-card:hover .nr-item-arrow {
    transform: translateX(5px);
}

.nr-category-item:hover .nr-item-ja,
.nr-category-card:hover .nr-item-ja {
    color: #e70a03 !important;
    font-weight: 700;
}


/* SPメニュー（スタイリッシュな再設計） */
.nr-gnav-sp {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 6000;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 100px 0 40px;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

.nr-gnav-sp.nr-active {
    right: 0;
}

.nr-gnav-sp ul {
    list-style: none;
    padding: 0;
}

.nr-gnav-sp li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    margin: 0 30px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.nr-gnav-sp.nr-active li {
    opacity: 1;
    transform: translateX(0);
}

/* メニュー項目のスタッガーアニメーション */
.nr-gnav-sp.nr-active li:nth-child(1) {
    transition-delay: 0.1s;
}

.nr-gnav-sp.nr-active li:nth-child(2) {
    transition-delay: 0.15s;
}

.nr-gnav-sp.nr-active li:nth-child(3) {
    transition-delay: 0.2s;
}

.nr-gnav-sp.nr-active li:nth-child(4) {
    transition-delay: 0.25s;
}

.nr-gnav-sp.nr-active li:nth-child(5) {
    transition-delay: 0.3s;
}

.nr-gnav-sp.nr-active li:nth-child(6) {
    transition-delay: 0.35s;
}

.nr-gnav-sp.nr-active li:nth-child(7) {
    transition-delay: 0.4s;
}

.nr-gnav-sp.nr-active li:nth-child(8) {
    transition-delay: 0.45s;
}

.nr-gnav-sp.nr-active li:nth-child(9) {
    transition-delay: 0.5s;
}

.nr-gnav-sp a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nr-gnav-sp a::after {
    content: '\f105';
    font-family: FontAwesome;
    color: #ccc;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nr-gnav-sp a:hover {
    color: var(--nr-primary);
}

.nr-gnav-sp a:hover::after {
    color: var(--nr-primary);
    transform: translateX(5px);
}

/* SPメニュー内の電話ボタン用特別スタイル */
.nr-gnav-sp li:last-child {
    margin-top: 30px;
    border: none;
}

.nr-gnav-sp li:last-child a {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    display: block;
    text-align: center;
    color: var(--nr-primary);
    line-height: 1.6;
}

.nr-gnav-sp li:last-child a::after {
    display: none;
}

.nr-sp-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 5500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.nr-sp-bg.nr-active {
    opacity: 1;
    visibility: visible;
}

/* ヘッダーSP制御エリア */
.nr-header-sp-controls {
    display: none;
    align-items: center;
    gap: 8px;
    /* Slightly more gap */
}

.nr-sp-lang-trigger,
.nr-sp-search-trigger {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--nr-text-dark);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nr-sp-lang-trigger:hover,
.nr-sp-search-trigger:hover {
    color: var(--nr-primary);
}

.nr-sp-lang-trigger.nr-active,
.nr-sp-search-trigger.nr-active {
    color: var(--nr-primary);
    transform: scale(1.1);
}

.nr-mobile-trigger {
    display: none;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 7000;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
}

.nr-mobile-trigger span {
    display: block;
    position: absolute;
    left: 12px;
    width: 24px;
    height: 2px;
    background: var(--nr-text-dark);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 4px;
}

.nr-mobile-trigger span:nth-child(1) {
    top: 16px;
}

.nr-mobile-trigger span:nth-child(2) {
    top: 23px;
}

.nr-mobile-trigger span:nth-child(3) {
    top: 30px;
    width: 16px;
    left: 20px;
}

.nr-trigger-label {
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--nr-text-dark);
    text-align: center;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

/* モバイルメニュー開閉時のアニメーション */
.nr-mobile-trigger.nr-active span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
    background: var(--nr-primary);
}

.nr-mobile-trigger.nr-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nr-mobile-trigger.nr-active span:nth-child(3) {
    top: 23px;
    width: 24px;
    left: 12px;
    transform: rotate(-45deg);
    background: var(--nr-primary);
}

.nr-mobile-trigger.nr-active .nr-trigger-label {
    opacity: 0;
    transform: translateY(5px);
}

/* SPメニュー内の追加セクション（言語選択など） */
.nr-sp-menu-extra {
    padding: 0 30px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.nr-sp-lang-section .nr-sp-label {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nr-sp-lang-section .nr-lang-selector select {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    background: #f5f5f5;
    border: 1px solid #eee;
    padding: 0 15px;
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M0 3 L5 8 L10 3' fill='none' stroke='%23888' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* モバイル検索/言語選択のアクティブ状態（全幅オーバーレイ） */
@media screen and (max-width: 1024px) {
    .nr-header-top-right {
        display: none !important;
        position: fixed;
        top: 70px;
        /* Aligned with tall mobile header */
        left: 0;
        width: 100% !important;
        background: #fff;
        padding: 10px 0;
        /* Vertical padding only */
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        z-index: 6500;
        transition: all 0.3s ease;
    }

    .nr-header-top-right.nr-sp-search-active,
    .nr-header-top-right.nr-sp-lang-active {
        display: block !important;
        animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* クラスに基づいて検索または言語セレクターを表示するロジック */
    .nr-header-top-right.nr-sp-search-active .nr-lang-selector {
        display: none;
    }

    .nr-header-top-right.nr-sp-search-active .nr-search-area {
        display: block;
    }

    .nr-header-top-right.nr-sp-lang-active .nr-search-area {
        display: none;
    }

    .nr-header-top-right.nr-sp-lang-active .nr-lang-selector {
        display: block !important;
        padding: 0 15px;
    }

    .nr-header-top-right.nr-sp-lang-active .nr-lang-selector select {
        width: 100%;
        height: 48px;
        border-radius: 12px;
        background: #f8f8f8;
        border: 1px solid #eee;
        padding: 0 15px;
        font-weight: 700;
        font-size: 1rem;
        color: #333;
        appearance: none;
        background-color: #f8f8f8;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M0 3 L5 8 L10 3' fill='none' stroke='%23888' stroke-width='1.5'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
    }

    .nr-search-area {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px;
        /* Side padding for the content */
    }

    .nr-search-form {
        border-radius: 12px;
        /* More modern rounded */
        height: 48px;
        background: #f8f8f8;
        border: 1px solid #eee;
    }

    .nr-search-input {
        font-size: 1rem;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

/* コンテナの最終調整 */
@media screen and (max-width: 768px) {
    .nr-header-top-inner {
        height: 70px;
        /* Slightly taller for more air */
        padding: 0 10px 0 20px;
        border-bottom: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    }

    .nr-logo img {
        height: 32px;
    }
}

/* ... End of .nr- Renewal System ... */

/* 検索予測変換（オートコンプリート） */
.nr-search-area {
    position: relative;
    /* Anchor for suggestions */
}

.nr-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 9000;
    display: none;
    /* Hidden by default */
    max-height: 400px;
    overflow-y: auto;
    margin-top: 1px;
    border: 1px solid #eee;
    border-top: none;
}

.nr-search-suggestions.nr-active {
    display: block;
}

.nr-suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s ease;
}

.nr-suggestion-item:last-child {
    border-bottom: none;
}

.nr-suggestion-item:hover {
    background: #f9f9f9;
}

.nr-suggestion-thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-right: 15px;
    border-radius: 6px;
    overflow: hidden;
    background: #fcfcfc;
    border: 1px solid #eee;
}

.nr-suggestion-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nr-suggestion-info {
    flex: 1;
    min-width: 0;
}

.nr-suggestion-model {
    display: block;
    font-size: 0.8rem;
    color: var(--nr-primary);
    font-weight: 700;
    margin-bottom: 2px;
}

.nr-suggestion-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* SP Adjustments for Search Suggestions */
@media screen and (max-width: 1024px) {
    .nr-header-top-right.nr-sp-search-active .nr-search-suggestions {
        position: fixed;
        top: 118px;
        /* Adjusted for full-width search overlay height (70+10+48 or so) */
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        border: none;
        max-height: calc(100vh - 120px);
        background: #fff;
        display: none;
    }

    .nr-header-top-right.nr-sp-search-active .nr-search-suggestions.nr-active {
        display: block;
    }

    .nr-suggestion-item {
        padding: 15px;
    }

    .nr-suggestion-thumb {
        width: 50px;
        height: 50px;
    }

    .nr-suggestion-title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-size: 0.85rem;
    }
}