* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-family: Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
}

:focus {
    outline: medium;
}

a {
    text-decoration: none;
    color: inherit;
}

ol,
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10;
}

.header .logo {
    color: #770101;
    font-size: 26px;
    position: absolute;
    left: 60px;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
    cursor: pointer;
    width: 200px;
}

.header .logo:hover {
    opacity: 0.5;
}

.header .nav {
    display: flex;
    z-index: 1;
}

.header .nav>li {
    margin-left: 30px;
    font-size: 16px;
    color: #fff;
}

.header::before {
    content: '';
    display: block;
    width: 100%;
    height: 80px;
    background: #ffffff;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.07);
    top: -80px;
    left: 0px;
    position: absolute;
    -webkit-transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0s;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0s;
}

.header_fix .header:before {
    top: 0px !important;
}

.header_fix .header .nav>li {
    color: #000;
    cursor: pointer;
}

.header_fix .header .nav>li:hover {
    color: #770101;
}

.swiper-main {
    width: 100%;
    height: 100%;
}

.swiper-main .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.swiper-main .swiper-slide img {
    width: 100%;
    height: auto;
    min-height: 100%;
    transition: 1s linear 2s;
    transform: scale(1.1, 1.1);
}

.swiper-main .swiper-slide-active img,
.swiper-main .swiper-slide-duplicate-active img {
    transition: 6s linear;
    transform: scale(1, 1);
}

.swiper-main .swiper-slide .animate-text {
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 100%;
    text-align: center;
    font-size: 38px;
    padding: 0 20px;
    z-index: 1;
    font-weight: bold;
}

.animate-text span {
    opacity: 0;
    position: relative;
}

.animate-text span.animate {
    -webkit-animation: text_animation 0.5s ease forwards 0s;
    animation: text_animation 0.5s ease forwards 0s;
}

@-webkit-keyframes text_animation {
    0% {
        opacity: 0;
        left: 15px;
    }

    100% {
        opacity: 1;
        left: 0px;
    }
}

@keyframes text_animation {
    0% {
        opacity: 0;
        left: 15px;
    }

    100% {
        opacity: 1;
        left: 0px;
    }
}

.page-content {
    max-width: 1150px;
    margin: auto;
    padding: 100px 20px 0;
}

.company-table {
    margin-top: 50px;
    padding: 0 20px;
}

.page-title {
    font-size: 36px;
    color: #770101;
    text-align: center;
}

.page-subttl {
    margin-top: 20px;
    line-height: 30px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.page-abstract {
    line-height: 30px;
    text-align: center;
    margin-top: 20px;
}

.content-form {
    max-width: 850px;
    margin: 50px auto 0;
}

.service-cont {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
}

.service-cont .item {
    width: calc((100% - 60px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-cont .item+.item {
    margin-left: 30px;
}

.service-cont .item:nth-child(3n+1) {
    margin-left: 0;
}

.service-cont .item img {
    width: 420px;
    margin: auto;
}

.service-cont .item .text {
    margin-top: 5px;
    text-align: center;
}

#product .service-cont .item {
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 30px;
}

#product .service-cont .item .text {
    padding: 15px;
    margin-top: 0;
    text-align: left;
}


.btn {
    background-color: #333333;
    color: #fff;
    width: 225px;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    border: 0;
}

.btn:hover {
    background-color: #666;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-label {
    color: #333;
    font-size: 14px;
}

.form-control {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #333;
    color: #333;
    font-size: 14px;
    padding: 7px 10px;
    background-color: transparent;
    line-height: 20px;
}


table.custable {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border-top: 1px solid #dedede;
    border-left: 1px solid #dedede;
}

table.custable th {
    background-color: #f7f7f7;
}

table.custable th,
table.custable td {
    border-right: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    vertical-align: middle;
    padding: 20px;
    line-height: 30px;
}

.footer {
    margin-top: 130px;
}

.footer .return-top {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    cursor: pointer;
    border-top: 1px solid #ddd;
}

.footer .return-top:hover {
    background-color: #fafafa;
}

.footer .footer-logo {
    color: #1e95c6;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #ddd;
    padding: 50px 0;
}

.footer .footer-logo img {
    width: 100px;
}

.footer .footer-logo a {
    cursor: pointer;
}

.footer .copyright {
    text-align: center;
    line-height: 60px;
    font-size: 12px;
    border-top: 1px solid #ddd;
}

.page-detail {
    max-width: 1300px;
    margin: auto;
    padding: 130px 20px 0;
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.detail-logo {
    display: flex;
    align-items: center;
}

.detail-logo .text {
    font-size: 30px;
    font-weight: bold;
    flex: 1;
    text-align: center;
    margin-right: 20px;
    padding: 20px 0;
}

.detail-logo img {
    width: 80px;
    margin-left: auto;
}

.detail-img {
    margin-top: 50px;
    padding-right: 90px;
}

.detail-img1 {
    width: 470px;
    margin: 0 0 40px;
}

.detail-ttl {
    color: #bd8921;
    font-size: 30px;
    font-weight: bold;
}

.detail-ttl1 {
    color: #bd8921;
    font-size: 24px;
    font-weight: bold;
}

.detail-text {
    color: #bd8921;
    font-weight: bold;
    font-size: 18px;
}

.detail-text1 {
    color: #bd8921;
    font-size: 14px;
    line-height: 1.8;
}

.detail-cont {
    display: flex;
}

.detail-cont .inner {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.detail-cont .inner:first-child {
    padding-right: 25px;
}

.detail-cont .inner:last-child {
    padding-left: 25px;
}

.aotons-img {
    margin-top: auto;
}

.color-black {
    color: #000;
}

.armorflex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.armorflex .armorflex-item {
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 10px;
}

.armorflex .armorflex-item img {
    width: 30px;
}

.advantage {
    display: flex;
    flex-wrap: wrap;
}

.advantage .advantage-item {
    width: 25%;
    margin-bottom: 40px;
}

.advantage .advantage-item span {
    font-size: 12px;
    text-align: center;
    margin-top: -13px;
    display: block;
}

.advantage .advantage-item img {
    width: 90px;
    margin: auto;
}

.protection-img {
    width: 560px;
}

.protection {
    margin-top: 80px;
}

.protection-item {
    display: flex;
    align-items: flex-end;
    margin-bottom: 40px;
}

.protection-item img {
    width: 210px;
}

.protection-item .num {
    color: #bd8921;
    font-size: 42px;
    padding: 0 8px 0 15px;
    font-weight: bold;
}

.protection-item .cont {
    border-left: 1px solid #333;
    padding-left: 15px;
    font-size: 13px;
}

.protection-item .cont span {
    display: block;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.performance-ttl {
    border-left: 10px solid #bd8921;
    padding-left: 13px;
    line-height: 32px;
    margin-top: auto;
    margin-bottom: 60px;
}

.performance-item {
    display: flex;
    align-items: flex-end;
    margin-bottom: 40px;
}

.performance-item img {
    width: 210px;
}

.performance-item .cont {
    padding-left: 15px;
    font-size: 13px;
}

.performance-item .cont span {
    display: block;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    border-left: 3px solid #333;
    line-height: 25px;
    padding-left: 10px;
}

.prolist {
    padding-top: 50px;
}

.prolist .head {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.prolist .head .ttl {
    color: #bd8921;
    font-size: 22px;
    font-weight: bold;
}

.prolist .head .ttl span {
    color: #000;
    font-size: 14px;
    font-weight: normal;
    display: block;
}

.prolist .head img {
    width: 200px;
    margin-left: auto;
}

.prolist .about {
    font-size: 14px;
    margin-top: 20px;
}

.prolist .about span {
    color: #bd8921;
    font-weight: bold;
    display: block;
    font-size: 16px;
}

.prolist .info {
    display: flex;
    flex-wrap: wrap;
    margin: 30px -10px 0;
}

.prolist .info .item {
    width: calc(100% / 3);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 10px;
}

.prolist .info .item img {
    width: 60px;
    margin: 0 10px;
}

.prolist .info .item.direction-c {
    flex-direction: column;
    align-items: center;
}

.prolist .info .item.direction-c img {
    width: 200px;
}

.prolist .info .item-list {
    padding: 0 10px;
    width: 100%;
}

.prolist .info .item-list li {
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #333;
    padding-top: 5px;
}

.prolist .info .item-list li span {
    font-weight: bold;
    color: #000;
}

.guardrail {
    padding: 0 10px;
    display: flex;
    align-items: flex-end;
}

.prolist .info .item .guardrail img {
    width: 100%;
}

.protector {
    display: flex;
    align-items: flex-end;
    padding: 0 10px;
}

.protector img {
    height: 140px;
}

.protector .p-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

.protector .p-inner span {
    font-size: 14px;
    line-height: 1.2;
}

.application {
    padding-top: 50px;
}

.application-ttl {
    font-size: 24px;
    font-weight: bold;
}

.application-ttl span {
    display: block;
    font-size: 16px;
}

.application-img {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.application-img img {
    width: 47%;
}

.barrier-img {
    width: 500px;
}

.turboo-page{
    display: flex;
    max-width: 90%;
}

.turboo-menu{
    width: 280px;
    margin-right: 20px;
    font-weight: bold;
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
}

.turboo-menu .title{
    font-size: 26px;
    text-align: center;
    margin-bottom: 20px;
}
.turboo-menu .list{
    font-size: 16px;
    list-style: auto;
    padding-left: 20px;
    line-height: 26px;
}
.turboo-menu .list li{
    margin-top: 5px;
    cursor: pointer;
}
.turboo-menu .sublist{
    padding-left: 20px;
    list-style: disc;
}
.turboo-menu .sublist li{
    font-size: 14px;
    color: #1a2a50;
    line-height: 22px;
}

.turboo-wrap{
    flex: 1;
}

.turboo-logo img {
    width: 190px;
    margin-left: auto;
}

.turboo-title {
    font-size: 70px;
    font-weight: bold;
    line-height: 80px;
    color: #1a2a50;
    text-align: center;
    border-bottom: 1px solid #000;
    width: fit-content;
    margin: 60px auto;
    letter-spacing: 5px;
}

.turboo-company {
    color: #fff;
    background-color: #1a2a50;
    margin-top: 10px;
    padding: 50px;
}

.turboo-company .ttl {
    font-size: 34px;
}

.turboo-company .subttl {
    font-size: 20px;
    margin: 30px 0 20px;
}

.turboo-company .text {
    line-height: 1.8;
}

.turboo-sales {}

.sales-title {
    font-size: 36px;
    font-weight: bold;
    line-height: 40px;
    padding: 80px 0 30px;
    text-align: center;
}

.sales-subtitle{
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
    color: #002060;
    padding: 40px 15px 0;
}


.hot-sales {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.hot-sales-item {
    display: flex;
    align-items: flex-start;
    margin-top: 30px;
    padding: 15px;
    width: 50%;
}

.hot-sales-item .photo {
    width: 200px;
    margin-top: 40px;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.hot-sales-item .photo img{
    width: 100%;
}

.hot-sales-item .photo .tag {
    position: absolute;
    top: -16px;
    right: -16px;
}

.hot-sales-item .photo .tag img{
    width: 38px;
}

.hot-sales-item .photo .tag span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
}

.hot-sales-item .cont {
    margin-left: 30px;
    color: #1a2a50;
    flex: 1;
    font-size: 14px;
}

.hot-sales-item .cont .name {
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}

.hot-sales-item .cont .specs {
    margin-top: 20px;
    padding-bottom: 12px
}

.hot-sales-item .cont .specs li {
    display: flex;
    align-items: flex-start;
    line-height: 20px;
    margin-bottom: 5px;
    word-break: break-all;
}

.hot-sales-item .cont .specs li span {
    width: 62px;
    display: block;
    flex-shrink: 0;
}

.hot-sales-item .cont .icon-wrap {
    margin-top: 20px;
}

.hot-sales-item .cont .icon-wrap .icon {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.hot-sales-item .cont .icon-wrap .icon img {
    width: 30px;
    margin-right: 10px;
}

.sales-line {
    border-bottom: 3px solid #1a2a50;
}

.versatile .hot-sales-item{
    flex-direction: column;
    margin-top: 10px;
    width: calc(100% / 4);
}

.versatile .hot-sales-item .photo {
    width: 100%;
    margin-top: 0;
    border-top: 5px solid #1a2a50;
}

.versatile .hot-sales-item .cont{
    margin-left: 0;
    margin-top: 15px;
    color: #002060;
    width: 100%;
    padding: 0 5px;
}

.versatile .hot-sales-item .cont .name{
    text-align: left;
    font-size: 20px;
    color: #221815;
}

.versatile .hot-sales-item .cont .specs {
    margin-top: 10px;
    padding-bottom: 0;
}

.tripod .hot-sales-item .cont .specs li{
    justify-content: center;
}

.tripod .hot-sales-item .cont .name{
    text-align: center;
}

.tripod .hot-sales-item .cont .specs li span{
    width: 48px;
}

.columns-3 .hot-sales-item{
    width: calc(100% / 3);
}

.mt-10 {
    margin-top: 10px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-80 {
    margin-top: 80px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.ml-20 {
    margin-left: 20px;
}

.pc-show {
    display: block;
}

.sp-show {
    display: none;
}

.sp-menu-btn {
    display: none;
}

.sp-turboo-menu-btn{
    display: none;
}

.sp-nav {
    display: none;
}

.sp-turboo-menu {
    display: none;
}


.code {
    width: 400px;
    margin: 0 auto;
}

#canvas {
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 2px;
    margin-left: 10px;
}

.error-msg {
    color: #f00;
    font-size: 14px;
    position: absolute;
    bottom: -22px;
    left: 0;
}

.retMess {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    align-items: center;
    justify-content: center;
    display: none;
}

.retMess .message {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    width: 340px;
}

.retMess .msgtext {
    width: 100%;
    text-align: center;
    font-size: 18px;
}

.retMess .messbtn {
    width: 60px;
    height: 35px;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin: 20px auto 0;
    cursor: pointer;
}

.inview {
    opacity: 0;
    position: relative;
    top: 40px;
    -webkit-transition: all 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s, opacity 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
    transition: all 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s, opacity 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
}

.inview.animate {
    opacity: 1;
    top: 0;
}

.pageone .header::before {
    top: 0;
}

.pageone .header .nav>li {
    color: #000;
}

.pageone .page-content {
    padding-top: 180px;
}


.w100 {
    width: 100%;
}

@media screen and (max-width: 1300px) {
    .turboo-page{
        max-width: 96%;
    }
    .hot-sales-item .photo {
        width: 150px;
    }
    .hot-sales-item {
        padding: 15px 8px;
    }
    .performance-item img {
        width: 180px;
    }
    .protection-item img {
        width: 180px;
    }
}


@media screen and (max-width: 1200px) {
    .footer .return-top {
        position: fixed;
        right: 20px;
        bottom: -60px;
        border-top: 0;
        background: #770101;
        width: 50px;
        height: 50px;
    }

    .footer .return-top:hover {
        background-color: #5b1c1c;
    }

    .header .sp-nav {
        width: 0;
        height: 100vh;
        max-width: calc(100% - 60px);
        position: fixed;
        top: 0;
        right: 0;
        background-color: #770101;
        display: flex;
        flex-direction: column;
        z-index: 1;
        transition: width 0.3s;
    }

    .header .sp-nav>li {
        margin-left: 0;
        border-bottom: 1px solid #fff;
        color: #fff;
    }

    .header .sp-nav>li a {
        display: block;
        padding: 18px;
    }

    .sp-mask {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
        display: none;
    }

    .pc-show {
        display: none;
    }

    .sp-show {
        display: block;
    }

    .detail-logo .text {
        font-size: 24px;
    }

    .header .nav {
        margin-left: auto;
    }

    .header .nav>li {
        margin-left: 20px;
    }
    .hot-sales-item .photo {
        width: 130px;
    }
    .versatile .hot-sales-item {
        width: calc(100% / 2);
    }
    .detail-cont {
        flex-direction: column;
    }

    .detail-cont .inner:first-child {
        padding-right: 0;
    }

    .detail-cont .inner:last-child {
        padding-left: 0;
    }

}

@media screen and (max-width: 960px) {
    .aotons-img {
        margin: 20px auto 0;
        width: 470px;
    }

    .protection-img {
        margin: auto;
    }

    .performance-ttl {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .header {
        padding: 0 30px;
    }

    .header .logo {
        left: 30px;
    }

    .header .nav {
        margin-left: auto;
    }

    .header .nav>li {
        margin-left: 20px;
    }

    .hot-sales-item {
        width: 100%;
        padding: 5px;
        margin-top: 15px;
    }

}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .header {
        height: 60px;
    }

    .header::before {
        height: 60px;
    }

    .header .logo {
        left: 20px;
        font-size: 20px;
        width: 110px;
    }

    .page-title {
        font-size: 32px;
    }

    .swiper-main .swiper-slide .animate-text {
        font-size: 18px;
        line-height: 26px;
    }

    .page-content {
        padding: 60px 20px 0;
    }

    .service-cont {
        flex-direction: column;
    }

    .service-cont .item {
        width: 100%;
    }

    .service-cont .item+.item {
        margin-left: 0;
        margin-top: 20px;
    }

    #product .service-cont .item {
        margin-bottom: 0;
    }

    .company-table {
        margin-top: 40px;
    }

    table.custable th,
    table.custable td {
        line-height: 25px;
        padding: 10px 6px;
    }

    .page-subttl {
        font-size: 20px;
    }

    .footer {
        margin-top: 100px;
    }

    .pageone .page-content {
        padding-top: 120px;
    }

    .page-detail {
        padding: 80px 20px 0;
    }

    .detail-logo img {
        width: 60px;
    }

    .detail-img {
        margin-top: 20px;
        padding-right: 0;
    }

    .prolist .info .item {
        width: 100%;
        padding: 0;
    }

    .prolist .info .item+.item {
        margin-top: 30px;
    }

    .detail-img1 {
        width: 260px;
        margin: 0 auto 20px;
    }

    .detail-ttl {
        font-size: 28px;
        margin-top: 30px;
    }

    .detail-ttl1 {
        font-size: 22px;
    }

    .advantage {
        margin: 0 -6px;
    }

    .advantage .advantage-item {
        padding: 0 6px;
    }

    .protection {
        margin-top: 40px;
    }

    .protection-item img {
        width: 86px;
    }

    .protection-item .num {
        font-size: 24px;
        padding: 0 6px 0 10px;
    }

    .protection-item .cont {
        padding-left: 10px;
    }

    .performance-item {
        flex-wrap: wrap;
    }

    .performance-item img {
        margin: auto;
    }

    .performance-item .cont {
        padding-left: 0;
        margin-top: 10px;
    }

    .prolist .head .ttl {
        font-size: 20px;
        width: 100%;
    }

    .prolist .head img {
        margin: 20px auto 0;
    }

    .protector {
        margin-top: 20px;
    }

    .detail-logo .text {
        font-size: 14px;
        margin-right: 10px;
        padding: 10px 0;
    }

    .sp-menu-btn {
        display: block;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: absolute;
        right: 0;
        cursor: pointer;
    }

    .sp-menu-btn span {
        width: 22px;
        height: 2px;
        background: #fff;
    }

    .sp-menu-btn span+span {
        margin-top: 4px;
    }

    .header_fix .sp-menu-btn span {
        background: #000;
    }

    .pageone .sp-menu-btn span {
        background: #000;
    }

    .header .nav {
        display: none;
    }

    .turboo-page {
        max-width: 100%;
    }

    .turboo-logo img {
        width: 100px;
    }

    .turboo-title {
        font-size: 36px;
        line-height: 56px;
        margin: 30px auto;
    }

    .turboo-company {
        padding: 20px;
    }

    .turboo-company .ttl {
        font-size: 24px;
    }

    .turboo-company .subttl {
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .sales-title {
        font-size: 32px;
        padding: 50px 0 20px;
    }

    .sales-subtitle {
        font-size: 26px;
        padding: 30px 5px 0;
    }

    .hot-sales {
        margin: 0 -5px;
    }

    .hot-sales-item .photo {
        width: 80px;
    }

    .hot-sales-item .cont {
        margin-left: 10px;
    }

    .versatile .hot-sales-item {
        width: 100%;
    }

    .versatile .hot-sales-item .cont{
        margin-top: 10px;
    }

    .versatile .hot-sales-item .cont .name {
        font-size: 18px;
    }

    .turboo-menu{
        display: none;
    }

    .sp-turboo-menu {
        width: 0;
        height: 100vh;
        max-width: calc(100% - 60px);
        position: fixed;
        top: 0;
        left: 0;
        background-color: #770101;
        display: flex;
        flex-direction: column;
        z-index: 10;
        transition: width 0.3s;
        overflow: auto;
    }

    .sp-turboo-menu>li {
        margin-left: 0;
        border-bottom: 1px solid #fff;
        color: #fff;
    }

    .sp-turboo-menu>li a {
        display: block;
        padding: 18px;
    }

    .sp-turboo-menu .sublist{
        padding: 10px 0 10px 16px;
        border-top: 1px solid #fff;
    }

    .sp-turboo-menu .sublist li a{
        padding: 5px 18px;
    }

    .sp-turboo-menu-btn{
        position: fixed;
        top: 75px;
        left: 15px;
        z-index: 1;
        display: block;
    }

    .sp-turboo-menu-btn img{
        border-radius: 50%;
        background-color: #fff;
    }

}


@media screen and (max-width: 360px) {
    .swiper-main .swiper-slide .animate-text {
        font-size: 16px;
    }
}