@charset "UTF-8";
/*

【メモ：カラーガイド】

暗い灰色：#7C878E
明るい灰色： #c1c6c8
*/




/* ----------------mobile default----------------*/
html * {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    /*ベースを10pxにしています*/
}


body {
    margin: 0;
    font-family: myriad-pro, "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    font-feature-settings: "palt";
}

a {
    text-decoration: none;
}

.aclink {
    color: #3a08b3 !important;
    text-decoration: underline;
}

.aclink:hover {
    color: #3a08b3 !important;
}

h1 {
    font-family: "Arial Black", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 2.5rem;
}

h2 {
    font-size: 3.0rem;
    border-bottom: 2px #ff6720 solid;
    z-index: -5;
}

h4 {
    font-size: 2.4rem;
    font-weight: bold;
    color: #000;
}

h5 {
    font-size: 1.4rem;
    font-weight: bold;
    color: rgb(20, 27, 77);
}

mark {
    padding: 0 5px;
    margin: 3px 0;
    border-radius: 5px;
    display: inline-block;
    font-feature-settings: "pkna";
    /*    word-break: break-all;*/
}

.text-magenta {
    color: #f0f;
}

.bg-magenta {
    background-color: #f0f;
}

.bg-yellow {
    background-color: #ff0;
}

.bg-white {
    background-color: #fff;
}

ul {
    list-style: none;
    padding-left: 0;
}

.dot,
.double-circle,
.number,
.alphabet {

    padding-left: 20px !important;
}

.dot li {
    list-style-type: disc;
}


.double-circle li {
    list-style-type: circle;
}

.number li {
    list-style-type: decimal;
    padding-left: 5px;
    margin-bottom: 5px;
}

.alphabet li {
    list-style-type: upper-alpha;
}

ol[type="i"] li{
    list-style: lower-roman;
}


.modal-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 50;
    border: 0;
}

.modal-header .close {
    padding: 1rem 2rem;
    font-size: 3.5rem;
    background-color: #fff;
}

.modal-title {
    display: none;
}

.lightbox-gallary:hover img {
    cursor: zoom-in;
    transform: scale(1.0);
    -webkit-transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    transition: .4s ease-out;
}

.lightbox-gallary img {
    transform: scale(0.98);
    -webkit-transition: .2s ease-out;
    -moz-transition: .2s ease-out;
    transition: .2s ease-out;
}

.img-wrap {
    overflow: hidden;
}


/*--- ヘッダー ---*/
header {
    top: 0;
    position: fixed;
    margin-top: 0;
    width: 100%;
    z-index: 500;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.header-border {
    -webkit-box-shadow: 0 1px 10px rgba(193, 198, 200, 0.2);
    box-shadow: 0 1px 10px rgba(193, 198, 200, 0.2);
}

header .container {
    position: relative;
    background: #fff;
    height: 40px;
}

#top_logo {
    width: 25px;
    height: auto;
    margin-left: 10px;
}

/* nav */
nav {
    margin-bottom: 30px;
    background: #fff;
    position: fixed;
    top: 40px;
    bottom: 0;
    left: 800px;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 100px;


    -webkit-transition: .5s ease-out;
    -moz-transition: .5s ease-out;
    transition: .5s ease-out;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

nav ul,
li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


#accordion_menu > li {
    border-top: #c1c6c8 1px solid;
    margin-bottom: -1px;
}

#accordion_menu a[data-toggle="collapse"] {
    display: block;
    padding: 10px 25px;
    text-decoration: none;
    position: relative;
    font-size: 1.8rem;
}


nav a {
    color: #7C878E;
    font-size: 1.6rem;
    text-decoration: none;
}

nav a:hover {
    color: #c1c6c8;
    text-decoration: none;
}

nav .submenu {
    border-top: #c1c6c8 1px solid;
    padding: 30px 25px 50px;
}

nav h3 {
    color: #7C878E;
    font-size: 1.8rem;
    line-height: 4rem;
    margin: 0;
}

nav h3 a {
    font-size: 1.8rem;
    line-height: 2rem;
    margin: 0;
}

nav .submenu ul {
    padding-left: 10px;
    line-height: 3.4rem;
}

#accordion_menu a[aria-expanded=true] {
    color: #c1c6c8;
}

#accordion_menu a[data-toggle="collapse"]::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: #c1c6c8 3px solid;
    border-right: #c1c6c8 3px solid;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 2px;
}

#accordion_menu a[aria-expanded=false]::after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    transition-duration: 0.3s;
}

#accordion_menu a[aria-expanded=true]::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition-duration: 0.3s;
}

/* Toggle Button */
#nav-toggle {
    position: absolute;
    right: 25px;
    top: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    height: 20px;
    /*    z-index: 101;*/
}

#nav-toggle div {
    position: relative;
}

#nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #8a8d8f;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
    top: 0;
}

#nav-toggle span:nth-child(2) {
    top: 8px;
}

#nav-toggle span:nth-child(3) {
    top: 16px;
}


/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle span:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
}

.open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}

.open #nav-toggle span:nth-child(3) {
    top: 8px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

/* nav スライドアニメーション */
.down {
    position: absolute;
    top: 40px;
    left: 0px;
    -webkit-transition: .5s ease-out;
    -moz-transition: .5s ease-out;
    transition: .5s ease-out;
}

/*PCメニュー非表示*/
.genremenu {
    display: none;
}

/*メニューアニメーション制御*/
.collapsing {
    -webkit-transition: .5s;
    transition: .5s;
    display: .5s;
}

/*メニュー展開時のコンテンツスクロール制御*/
.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}



/*--- フッター ---*/
footer {
    background: #000;
    color: #fff;
    font-size: 1.3rem;
}

footer img.logo {
    width: 100%;
    max-width: 200px;
    height: auto;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: rgb(58, 8, 179);
    text-decoration: none;
}

footer .f-menu {
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 3rem;
}

footer h3 {
    font-size: 1.4rem;
    line-height: 2.5rem;
    margin-top: 10px;
}

footer .legacy {
    margin-top: 10px;
}

footer .dl-sub p {
    font-size: 1.2rem;
    line-height: 2.5rem;
    margin: 10px 0 0;
    padding: 0;
}

footer .dl-sub ul li h3 {
    margin-top: 0;
    margin-left: 10px;
}

footer ul.sns-btn img {
    width: 40px;
    height: 40px;
    margin: 10px 0;
}

footer small {
    font-size: 0.9rem;
}

footer img.TW_logo {
    width: auto;
    height: 2rem;
    padding: 0 3px 3px;
}


/*---メインコンテンツ---*/
main {
    margin-top: 40px;
    min-height: 60vh;
}

main a {
    color: #7C878E;
}

main a:hover {
    color: #c1c6c8;
    text-decoration: none;
}


.cr-placeholder {
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.cr-placeholder .captionbox::before {
    content: "";
    display: block;
    width: 10px;
    height: 100%;
    position: absolute;
    left: 0;
}

.captionbox {
    background: -moz-linear-gradient(left, rgba(20, 27, 77, 0.8), rgba(3, 4, 10, 0.8));
    background: -webkit-linear-gradient(left, rgba(20, 27, 77, 0.8), rgba(3, 4, 10, 0.8));
    background: linear-gradient(90deg, rgba(20, 27, 77, 0.8), rgba(3, 4, 10, 0.8));
    color: #fff;
}

/*カルーセル 共通*/
.carousel-item {
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: none;
    margin: 0 10px 10px;
    background-color: #c1c6c8;
    opacity: 0.8;
}

.carousel-indicators li.active {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: none;
    background-color: #7C878E;
}


/*メインビジュアル*/
#mainVisualCarousel .cr-placeholder {
    width: 100%;
    height: auto;
    min-height: 66vw;
    overflow: hidden;
}

#mainVisualCarousel .cr-placeholder .row {
    height: auto;
    min-height: 66vw;
}

#mainVisualCarousel .cr-placeholder .captionbox::before {
    border-left: #ff6720 5px solid;
}

#mainVisualCarousel .cr-placeholder .captionbox h1 {
    margin-top: 20px;
}

#mainVisualCarousel .cr-placeholder .captionbox p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

#mainVisualCarousel .carousel-indicators li {
    background-color: #e8e8e8;
    width: 10px;
    height: 10px;
}

#mainVisualCarousel .carousel-indicators li.active {
    background-color: #e8e8e8;
}

/*メイン画像*/

#mainVisualCarousel .carousel-item:nth-child(1) .cr-placeholder {
    background-image: url(/img/top_sp/zen_dac_3_main.jpg);
}
#mainVisualCarousel .carousel-item:nth-child(2) .cr-placeholder {
    background-image: url(/img/top_sp/zen_phono_3_main.jpg);
}
#mainVisualCarousel .carousel-item:nth-child(3) .cr-placeholder {
    background-image: url(/img/top_sp/44mm_to_xlr_cable_se-main.jpg);
}
#mainVisualCarousel .carousel-item:nth-child(4) .cr-placeholder {
    background-image: url(/img/top_sp/go_bar_kensei_main.jpg);
}
#mainVisualCarousel .carousel-item:nth-child(5) .cr-placeholder {
    background-image: url(/img/top_sp/idsd_diablo2_top.jpg);
}
#mainVisualCarousel .carousel-item:nth-child(6) .cr-placeholder {
    background-image: url(/img/top_sp/ican_phantom_top.jpg);
}
#mainVisualCarousel .carousel-item:nth-child(7) .cr-placeholder {
    background-image: url(/img/top_sp/NEO_iDSD2_top.jpg);
}
#mainVisualCarousel .carousel-item:nth-child(8) .cr-placeholder {
    background-image: url(/img/top_sp/DC_Blocker_plus_main.jpg);
}
#mainVisualCarousel .carousel-item:nth-child(9) .cr-placeholder {
    background-image: url(/img/top_sp/hip-dac3-main.jpg);
}
#mainVisualCarousel .carousel-item:nth-child(10) .cr-placeholder {
    background-image: url(/img/top_sp/Zen-CAN-signature-main.jpg);
}
#mainVisualCarousel .carousel-item:nth-child(11) .cr-placeholder {
    background-image: url(/img/top_sp/go_pod_top.jpg);
}
#mainVisualCarousel .carousel-item:nth-child(12) .cr-placeholder {
    background-image: url(/img/top_sp/lan_isilencer_top.jpg);
}

/*ニュースフィード*/
#newsFeedCarousel .card,
.reviews .card {
    /*    margin: 0 8vw;*/
    margin: 0 8vw;
    border-color: #7C878E;
}


#newsFeedCarousel .card p,
.reviews .card p {
    font-size: 1.1rem;
}

#newsFeedCarousel .card p.overview,
.reviews .card p.overview {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

#newsFeedCarousel .card a,
.reviews .card a {
    font-size: 1.1rem;
}


#newsFeedCarousel .card .card-footer,
.reviews .card .card-footer {
    background-color: transparent;
    border: none;
}



/*矢印*/
.slide-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    border-radius: 100%;
    width: 6vw;
    height: 6vw;
    opacity: 0.8;
    margin: auto;
    z-index: 99;
    background-color: #e8e8e8;
    cursor: pointer;
}

.prev-arrow {
    left: 5px;
}

.next-arrow {
    right: 5px;
}


/*スライド　ドット*/
.slick-dots li button:before {
    font-size: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    text-align: center;
    color: #c1c6c8;
    margin: auto;
    transform: scale(0.8, 0.8);
}


.slick-dots li.slick-active button:before {
    /*    font-size: 15px;*/
    color: #7C878E;
    transform: scale(1.1, 1.1);
}


/*ブランド紹介セクション */
#brandCopy .cr-placeholder {
    width: 100%;
    height: auto;
    min-height: 60vw;
    overflow: hidden;
}

#brandCopy .cr-placeholder .row {
    height: auto;
    min-height: 60vw;
}

#brandCopy .cr-placeholder .captionbox {
    background: -moz-linear-gradient(left, rgba(20, 27, 77, 0.6), rgba(3, 4, 10, 0.6));
    background: -webkit-linear-gradient(left, rgba(20, 27, 77, 0.6), rgba(3, 4, 10, 0.6));
    background: linear-gradient(90deg, rgba(20, 27, 77, 0.6), rgba(3, 4, 10, 0.6));
}

#brandCopy .cr-placeholder .captionbox::before {
    border-left: #000 5px solid;
}

#brandCopy .cr-placeholder .captionbox::after {
    border-right: #000 5px solid;
    content: "";
    display: block;
    width: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

#brandCopy .cr-placeholder .captionbox h1 {
    margin-top: 10px;
    font-size: 1.4rem;
    /*    font-size: 3.5vw;*/
    font-weight: bold;
}

#brandCopy .cr-placeholder .captionbox p {
    /*    margin-bottom: 20px;*/
    font-size: 1.2rem;
    /*    font-size: 1.1rem;*/
    line-height: 2.1rem;
}

#brandCopy .cr-placeholder {
    background-image: url(/img/top_sp/Brand_SP.jpg);
}

/*ダウンロードセクション*/
.download h1,
.news-column h1 {
    border-bottom: 3px #ff6720 solid;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: +2px;
}

.download a.btn,
.news-column a.btn {
    background: -moz-linear-gradient(left, rgb(20, 27, 77), rgb(3, 4, 10));
    background: -webkit-linear-gradient(left, rgb(20, 27, 77), rgb(3, 4, 10));
    background: linear-gradient(90deg, rgb(20, 27, 77), rgb(3, 4, 10));
    background-color: #3a08b3;
    color: #fff;
    font-size: 1.8rem;
}

.news-column a.btn {
    font-size: 1.4rem;
}


.download a.btn:hover,
.news-column a.btn:hover {
    background: #3a08b3;
    color: #fff;
}

.text-accent {
    color: #3a08b3;
    margin-bottom: 0;
}

/*最新ニュース＆コラムセクション*/
.article-note h5 {
    padding: 10px 0;
    margin: 0;
    letter-spacing: +0.05rem;
}

.article-note h5 > a {
    color: inherit;
}

.article-note h5 > a:hover {
    color: #3a08b3;
}

.article-note p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.8rem;
}

.article-note {
    border-bottom: 1px solid #7C878E;
}

section.news-column .article:nth-child(3) .article-note {
    border-bottom: none;
    padding-bottom: 20px;
}




/*---下層ページ 共通---*/

.second-menu {
    background-color: rgb(20, 27, 77);
    position: sticky;
    top: 40px;
    z-index: 50;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.second-menu h3 {
    white-space: nowrap;
    font-size: 1.8rem;
    line-height: 1.8;
    font-weight: bold;
    color: #fff;
}

.second-menu .nav {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    white-space: nowrap;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.4) 90%, rgba(193, 198, 200, 0.4));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.4) 90%, rgba(193, 198, 200, 0.4));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 90%, rgba(193, 198, 200, 0.4));
    background-color: #fff;
    font-size: 1.8rem;
    border-bottom: 1.5px #c1c6c8 solid;
}

.second-menu .nav::-webkit-scrollbar,
.nav.x-scroll::-webkit-scrollbar {
    height: 6px;
}

.second-menu .nav::-webkit-scrollbar-track,
.nav.x-scroll::-webkit-scrollbar-track {
    background: #f2f2f2;
}

.second-menu .nav::-webkit-scrollbar-thumb,
.nav.x-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #c1c6c8;
}


.third-menu {
    background-color: #7C878E;
    position: sticky;
    top: 90px;
    z-index: 50;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.third-menu h3 {
    white-space: nowrap;
    font-size: 1.8rem;
    line-height: 1.8;
    font-weight: bold;
    color: #fff;
}

.third-menu .nav {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    white-space: nowrap;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.4) 90%, rgba(193, 198, 200, 0.4));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.4) 90%, rgba(193, 198, 200, 0.4));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 90%, rgba(193, 198, 200, 0.4));
    background-color: #fff;
    font-size: 1.8rem;
    border-bottom: 1.5px #c1c6c8 solid;
}

.third-menu .nav::-webkit-scrollbar {
    height: 6px;
}

.third-menu .nav::-webkit-scrollbar-track {
    background: #f2f2f2;
}

.third-menu .nav::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #c1c6c8;
}

.stick {
    position: sticky;
    top: 39px;
    z-index: 50;
    background-color: #fff;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {

    background-color: #7C878E;
    border-color: #7C878E;
    color: #fff;
    font-weight: bold;
}

.nav-pills .nav-link {
    border-color: #c1c6c8 !important;
    border-width: 2px !important;
}

.nav-pills .nav-link.active {
    border-color: #7C878E !important;
}


section {
    margin-top: 30px;
}

/*ページトップボタン*/
#pagetop {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #3a08b3;
    opacity: 0.5;
    border-radius: 50%;
    -webkit-transition: .2s ease-out;
    -moz-transition: .2s ease-out;
    transition: .2s ease-out;
    z-index: 100;
}

#pagetop:hover {
    opacity: 0.7;
}

#pagetop .triangle {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid #fff;
}

/*ページリンク位置調整*/
#phantom,
#pro,
#neo,
#micro,
#zen,
#nano,
#x,
#go,
#accessories,
#others,
#legacy,
#dl,
#howto,
#problem {
    padding-top: 130px;
    margin-top: -130px;
}

.tab-pane #important,
.tab-pane #dl,
.tab-pane #howto,
.tab-pane #important-proidsd,
.tab-pane #dl-proidsd,
.tab-pane #howto-proidsd,
.tab-pane #important-midsddiablo,
.tab-pane #dl-midsddiablo,
.tab-pane #howto-midsddiablo,
.tab-pane #important-bluetooth,
.tab-pane #dl-bluetooth,
.tab-pane #howto-bluetooth {
    padding-top: 180px;
    margin-top: -180px;
}


/*---製品詳細ページ---*/
.sns-share{
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 10px;
}

.sns-share .d-flex :first-child {
    margin-right: 4px;
}

.product-image {
    /*    height: 61.4vw;*/
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}


.product-name img {
    padding-top: 52vw;
    /*    height: 7.7vw;*/
    width: 53.3vw;
    font-size: 3.8rem;
    text-align: center;
}

.product-name object.name-logo {
    padding-top: 52vw;
    /*    height: 7.7vw;*/
    width: 53.3vw;
    font-size: 3.8rem;
    text-align: center;
}



.product-catchcopy {
    font-size: 1.3rem;
    line-height: 2.2;
    font-weight: bold;
    padding: 1.5rem 0 1rem;
}

.awardslick {
    padding-left: 40px;
    padding-right: 40px;
}

.award img.award-icon {
    width: 60px;
}

.award .slide-arrow {
    opacity: 0.8;
    background-color: transparent;
    transform: scale(2, 2)
}

.feature h2 {
    color: rgb(20, 27, 77);
    font-weight: bold;
    font-size: 1.8rem;
}

.feature {
    line-height: 2.0;
    padding: 25px 0;
    margin: 25px 0;
}

.feature.feature-second {
    padding-top: 0;
    min-height: 400px;
    background-repeat: no-repeat;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-position: center top;
}

.feature.feature-second .container {
    padding: 45vw 0 0;
}

.feature.feature-second .feature-text {
    bottom: 0;
    background: -moz-linear-gradient(left, rgba(20, 27, 77, 0.9), rgba(3, 4, 10, 0.9));
    background: -webkit-linear-gradient(left, rgba(20, 27, 77, 0.9), rgba(3, 4, 10, 0.9));
    background: linear-gradient(90deg, rgba(20, 27, 77, 0.9), rgba(3, 4, 10, 0.9));
    color: #fff;
    margin: 15px 20px 15px;
    padding: 20px 10px 10px;
}

.feature.feature-second .feature-text h2 {
    color: #fff;
    text-align: center;
    border: 0;
    margin-bottom: 10px;
}


.feature.feature-fourth {
    position: relative;

    /*
    height: 95vw;
    min-height: 400px;
*/
}

.feature.feature-fourth .feature-image {
    position: absolute;
    width: 100%;
    top: auto;
    bottom: 0;
    left: 0;
    width: 85%;
    /*
    -webkit-clip-path: polygon(0 0, 77% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 77% 0, 100% 100%, 0% 100%);
*/

    z-index: -10;
}

.feature.feature-fourth .feature-image img {
    -webkit-clip-path: polygon(0 0, 77% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 77% 0, 100% 100%, 0% 100%);
}

.feature.feature-fourth .feature-text {
    background: -moz-linear-gradient(left, rgba(20, 27, 77, 0.9), rgba(3, 4, 10, 0.9));
    background: -webkit-linear-gradient(left, rgba(20, 27, 77, 0.9), rgba(3, 4, 10, 0.9));
    background: linear-gradient(90deg, rgba(20, 27, 77, 0.9), rgba(3, 4, 10, 0.9));
    color: #fff;

    /*    margin: 0 10px 0 0;*/
    margin: 0 10px 20vh auto;
    padding: 20px 10px 10px;


    width: 50vw;
    min-width: 280px;




}

.feature.feature-fourth .feature-text h2 {
    color: #fff;
    text-align: right;
    border-bottom: 3px solid #7C878E;
    margin-bottom: 10px;
    padding-left: 20px;
    margin-left: 30px;
}



.tec,
.spec,
.product-download,
.reviews {
    padding-top: 20px;
}

.tec h3,
.spec h3,
.product-download h3,
.reviews h3 {
    font-weight: bold;
    color: rgb(20, 27, 77);
    font-size: 2.4rem;
}

.tec-items {
    padding: 20px 0 30px;
    border-color: #c1c6c8 !important;
    border-width: 1.5px !important;
}

.tec-icon {
    padding-bottom: 20px;
}

.tec-icon img {
    width: 150px;
}

.tec-text {
    padding-left: 30px;
    padding-right: 30px;
}

.gallary {
    background-color: #c1c6c8;
}

.product-detail-page .modal-content {
    background-color: transparent;
    border: 0;
}


.product-detail-page .modal-body {
    background-color: #000;
    padding: 0;
}

.product-detail-page .modal-footer {
    color: #fff;
    justify-content: flex-start;
    border: 0;
    padding-top: 20px;
}

.product-detail-page .modal-header .close {
    background-color: #000;
}

.product-detail-page .close {
    color: #fff;
}

.product-detail-page .modal-backdrop {
    opacity: .8;
}


.spec-item .row,
.download-item .row {
    border-color: #c1c6c8 !important;
    border-width: 1.5px !important;
}

.spec-item {
    padding: 20px 0;
    font-size: 1.3rem;
    line-height: 1.6;
}

.spec-item h5 {
    color: currentColor;
    font-weight: inherit;
    font-size: 1.3rem;

    line-height: 2.0;
}

.spec-item .barcode {
    width: 100px;
}

h4.spec-title {
    font-weight: bold;
    font-size: 1.6rem;
    padding-top: 1rem;
}

.spec-detail {
    text-indent: -1rem;
    padding-left: 1rem;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.download-item h4 {
    font-weight: 500;
    font-size: 2.0rem;
    margin: 0;
}

.download-item img.dl-btn {
    width: 30px;
}



.video-wrap {
    width: 100%;
    height: 0;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

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

section:last-of-type {
    padding-bottom: 30px;
}

/*---製品一覧ページ---*/
.lgc {
    border-bottom: 2px #ff6720 solid;
}

.coming-soon {
    pointer-events: none;
    cursor: default;
}

.dl-column .coming-soon,
.product .coming-soon,
nav .coming-soon {
    position: relative;
}

.dl-column .coming-soon img,
.product .coming-soon img,
nav .coming-soon img {
    opacity: 0.3;
}

.dl-column .coming-soon p,
.product .coming-soon p,
nav .coming-soon p {
    opacity: 0.5;
}

.product .coming-soon .col-12:first-child::after,
nav .coming-soon .col-12:first-child::after {
    content: "Coming Soon";

    font-family: "Arial Black", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    font-size: 3.4rem;
    color: #eee;
    text-shadow: 0 0 5px #7C878E;
}

.dl-column .coming-soon::after {
    content: "Coming Soon...";

    font-family: "Arial Black", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 0 0 5px #444;
    white-space: nowrap
}

section.series:nth-child(10) {
    margin-top: 90px;
    margin-bottom: 30px;
}

section.series:nth-child(10) h2 {
    font-size: 2.4rem;
}

/*マニュアルDLページ*/
.info-head {
    border-bottom: 1px #c1c6c8 solid;
    border-right: 0;
}

.info-head h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

section.manual-series:nth-child(10) {
    margin-top: 90px;
    margin-bottom: 30px;
}

section.manual-series:nth-child(10) h2 {
    font-size: 2.4rem;
}

section.manual-series .product {
    height: 12vh;
    min-height: 14rem;
    background-position: 80% 50%;
    background-repeat: no-repeat;
    background-size: 70%;
    font-size: 1.8rem;
}

section.manual-series .items {
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.6) 0%, rgba(193, 198, 200, 0.4) 30%, rgba(3, 4, 10, 0.6) 90%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.6) 0%, rgba(193, 198, 200, 0.4) 30%, rgba(3, 4, 10, 0.6) 90%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(193, 198, 200, 0.4) 30%, rgba(3, 4, 10, 0.6) 90%);
    font-size: 1.8rem;
    border-radius: 0;
    border-color: #7C878E !important;

}

section.manual-series .items a {
    color: #fff;
}

section.manual-series .items a:hover {
    color: #ff6720;

}

section.manual-series .items p small {
    font-size: 1.2rem;
    line-height: 1.2;
}

/* ファームウェアDL 202206〜 */

/* 背景色の調整が必要 */

/* section.manual-series .items {
    background: -moz-linear-gradient(left, rgba(193, 198, 200, 0.4) 0%, rgba(3, 4, 10, 0.5) 90%);
    background: -webkit-linear-gradient(left, rgba(193, 198, 200, 0.4) 0%, rgba(3, 4, 10, 0.5) 90%);
    background: linear-gradient(90deg, rgba(193, 198, 200, 0.4) 0%, rgba(3, 4, 10, 0.5) 90%);

} */


/*ドライバDL + ファームウェアDLページ*/
.dl-btn {
    width: 40px;
}

.dl-info .dl-table {
    width: 50%;
    height: auto;
    border: 1px #c1c6c8 solid;
}

.dl-table-title {
    width: 30%;
    height: auto;
    border: 1px #c1c6c8 solid;
}

.dl-table-detail {
    width: 70%;
    height: auto;
    border: 1px #c1c6c8 solid;
}


.dl-info small {
    line-height: 2.0;
}


mark.os {
    background-color: #7C878E;
    background-color: transparent;
}

mark.prdtag {
    background-color: #7C878E;
    color: #fff;
    border-radius: 50px;
    padding: 0 8px;
}

.new-driver-dl {
    margin-bottom: 80px;
}

.hidden-contents {
    margin-bottom: 60px;
}

.hidden-contents a[data-toggle="collapse"] {
    color: inherit;
}

.hidden-contents a[data-toggle="collapse"] h2::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: #ff6720 3px solid;
    border-right: #ff6720 3px solid;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    border-radius: 2px;
}

.hidden-contents a[aria-expanded=false] h2::after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    transition-duration: 0.3s;
}

.hidden-contents a[aria-expanded=true] h2::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition-duration: 0.3s;
}

.hidden-contents a#problem {
    z-index: -5;
}

img.pdf-dl {
    width: 20px;
    vertical-align: middle;
}

.old-information ol li {
    list-style-type: decimal;
    padding-bottom: 20px;
}

.old-information h3 {
    font-size: 3.4rem;
}

.old-information h4 {
    font-size: 2.4rem;
    font-weight: bold;
    margin: 20px 0 10px;
    border-top: 1px #7C878E solid;
    border-bottom: 1px #7C878E solid;
}

.old-information h5 {
    font-size: 2.2rem;
}

.important-info ul {
    padding-left: 1.5rem;
    line-height: 2;
}


.old-firm-header:hover {
    color: #3a08b3;
    text-decoration: underline;
}


.nav-pills .nav-item a {
    font-size: 2.4rem;
    color: #c1c6c8;
}


.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.4), #3a08b3 20%, #3a08b3 80%, rgba(255, 255, 255, 0.4));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.4), #3a08b3 20%, #3a08b3 80%, rgba(255, 255, 255, 0.4));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), #3a08b3 20%, #3a08b3 80%, rgba(255, 255, 255, 0.4));
    background-color: #fff;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background: none;
    background-color: #7C878E;
}

.x-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.nav-tabs .nav-link {
    border-color: #c1c6c8 #c1c6c8 #c1c6c8;
    font-size: 1.8rem;
    padding: 1rem 1.5rem;
}



#dlClp-bluetooth .download a img {
    height: 20px;
    width: 20px;
}

.update > .row {
    border-top: #c1c6c8 1px solid;
    padding-top: 2rem;
}


/*会社概要・コンタクト + お問い合わせ・サポート*/
.company-info h3 {
    font-size: 2.8rem;
    font-weight: bold;
}

.address {
    padding: 1.5rem;
}

.address h4 {
    font-size: 1.8rem;
}

.address h5 {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    background-color: #c1c6c8;
    background-color: #7C878E;
    /*    border-radius: 3px;*/
    font-feature-settings: "pkna";
}

.address p {
    font-size: 1.6rem;
    padding: 0.5rem 1.5rem;
}

.contact-form h3,
.support-form h3 {
    border-top: 1.5px #7C878E solid;
    border-bottom: 1.5px #7C878E solid;
    font-size: 3.8rem;
    font-weight: bold;
    padding: 1.0rem 0;
}

.contact-form h5,
.support-form h5,
.attention h5 {
    font-size: 2.0rem;
    margin: 2.5rem 0 0.5rem;
}

.contact-form p,
.support-form p,
.attention p {
    padding: 0 1.0rem;
}

.warranty h4,
.privacy h4 {
    font-size: 2.4rem;
    margin: 2.0rem 0 1.0rem;
}

.warranty .text-box,
.privacy .text-box {
    border: 1px #7C878E solid;
    padding: 1.0rem 2.0rem;
    border-radius: 0.5rem;
}

.privacy .text-box h5 {
    color: #000;
    font-size: 1.4rem;
}

.privacy .text-box p,
.privacy .text-box .list {
    padding-left: 10px;
}

.form-area .nav-tabs li {
    font-size: 2.4rem;
}






/* ----------------tablet | bigger than 768----------------*/
@media screen and (min-width:768px) {

    h1 {
        font-size: 3.6rem;
    }

    h5 {
        font-size: 3.2rem;
    }

    /* layout */

    header .container {
        height: 120px;
    }

    header nav.container {
        height: 100%;
        max-height: calc(100vh - 120px);
        overflow-y: overlay;
    }

    .pc_menu {
        height: 100%;
    }

    #top_logo {
        width: 80px;
        margin-left: 0px;
    }

    /* nav */
    nav {
        top: 0;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 0vh;
        padding-bottom: 0px;
        overflow-y: visible;
    }

    /*submenu*/
    nav .submenu {
        display: flex;
        justify-content: flex-end;
        border-top: none;
    }

    nav .submenu a {
        font-weight: bold;
        font-size: 1.4rem;
    }

    nav .submenu .dropdown:hover > .dropdown-menu-right {
        display: block;
    }

    nav .submenu .dropdown-item {
        color: #7C878E;
        font-weight: 500;
        line-height: 2.5rem;
    }

    nav .submenu .dropdown-item:hover {
        color: #c1c6c8;
        background-color: #fff;
    }

    /*mainmenu*/
    .mainmenu .col {
        border-color: #c1c6c8 !important;
        border-width: 1.5px !important;
    }

    .mainmenu p {
        display: block;
        color: #7C878E;
        /* font-sizeを変更するとタブレット表示が崩れるので注意*/
        font-size: 1.6rem;
        line-height: 2.0rem;
        /* 変更時：.genre1 pも変更する */
        padding: 1.3rem 0;
        /* 変更時：.genre1 pも変更する */
        font-weight: 500;
        transform: translateY(-3px)
    }

    .genre1 p {
        /*.mainmenu p のline-heitht/2 + padding*/
        padding: 2.3rem 0;
    }

    /*menu arrow*/
    .mainmenu p::after {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        border-top: #7C878E 3px solid;
        border-right: #7C878E 3px solid;
        position: absolute;
        bottom: 4px;
        left: 0;
        right: 0;
        margin: auto;
        border-radius: 2px;
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    .mainmenu li.hover p {
        color: #c1c6c8;
        cursor: pointer;
    }

    .mainmenu li.hover p::after {
        border-top: #c1c6c8 3px solid;
        border-right: #c1c6c8 3px solid;
    }

    /*genre menu*/
    .genre_container {
        -webkit-box-shadow:
            0 1.9px 1.9px rgba(0, 0, 0, 0.057),
            0 5px 5px rgba(0, 0, 0, 0.076),
            0 10.1px 10.1px rgba(0, 0, 0, 0.086),
            0 19.2px 19.2px rgba(0, 0, 0, 0.092),
            0 38.4px 34.8px rgba(0, 0, 0, 0.1),
            0 101px 74px rgba(0, 0, 0, 0.13);

        box-shadow:
            0 1.9px 1.9px rgba(0, 0, 0, 0.057),
            0 5px 5px rgba(0, 0, 0, 0.076),
            0 10.1px 10.1px rgba(0, 0, 0, 0.086),
            0 19.2px 19.2px rgba(0, 0, 0, 0.092),
            0 38.4px 34.8px rgba(0, 0, 0, 0.1),
            0 101px 74px rgba(0, 0, 0, 0.13);
    }

    .genremenu img {
        opacity: 0.4;
        -webkit-transition: .2s ease-out;
        -moz-transition: .2s ease-out;
        transition: .2s ease-out;
    }

    .genremenu img:hover {
        opacity: 1;
    }

    .genremenu a:hover {
        color: #7C878E;
        text-decoration: none;
    }

    /* Toggle Button */
    #nav-toggle {
        display: none;
    }

    /*footer*/
    footer {
        font-size: 1.4rem;
    }

    footer h3 {
        font-size: 1.6rem;
        line-height: 3rem;
        margin-bottom: 0;
    }

    footer .dl-sub p {
        font-size: 1.4rem;
    }

    footer .legacy {
        margin-top: 20px;
    }

    footer small {
        font-size: 0.9rem;
    }


    /* main content */
    main {
        margin-top: 120px;
    }

    /*メインビジュアル*/
    #mainVisualCarousel .cr-placeholder {
        width: 100%;
        min-height: 40vw;
        height: 40vw;
    }

    #mainVisualCarousel .cr-placeholder .row {
        min-height: 40vw;
    }

    #mainVisualCarousel .cr-placeholder .captionbox::before {
        border-left: #ff6720 10px solid;
    }

    #mainVisualCarousel .cr-placeholder .captionbox p {
        font-size: 1.6rem;
        line-height: 3.6rem;
        -webkit-line-clamp: 3;
    }

    #mainVisualCarousel .carousel-item:nth-child(1) .cr-placeholder {
        background-image: url(/img/top_pc/zen_dac_3_main.jpg);        
    }
    #mainVisualCarousel .carousel-item:nth-child(2) .cr-placeholder {
        background-image: url(/img/top_pc/zen_phono_3_main.jpg);
    }
    #mainVisualCarousel .carousel-item:nth-child(3) .cr-placeholder {
        background-image: url(/img/top_pc/44mm_to_xlr_cable_se-main.jpg);        
    }
    #mainVisualCarousel .carousel-item:nth-child(4) .cr-placeholder {
        background-image: url(/img/top_pc/go_bar_kensei_main.jpg);
    }
    #mainVisualCarousel .carousel-item:nth-child(5) .cr-placeholder {
        background-image: url(/img/top_pc/idsd_diablo2_top.jpg);
    }
    #mainVisualCarousel .carousel-item:nth-child(6) .cr-placeholder {
        background-image: url(/img/top_pc/ican_phantom_top.jpg);
    }
    #mainVisualCarousel .carousel-item:nth-child(7) .cr-placeholder {
        background-image: url(/img/top_pc/NEO_iDSD2_top.jpg);
    }
    #mainVisualCarousel .carousel-item:nth-child(8) .cr-placeholder {
        background-image: url(/img/top_pc/DC_Blocker_plus_main.jpg);
    }
    #mainVisualCarousel .carousel-item:nth-child(9) .cr-placeholder {
        background-image: url(/img/top_pc/hip-dac3-main.jpg);
    }
    #mainVisualCarousel .carousel-item:nth-child(10) .cr-placeholder {
        background-image: url(/img/top_pc/Zen-CAN-signature-main.jpg);
    }
    #mainVisualCarousel .carousel-item:nth-child(11) .cr-placeholder {
        background-image: url(/img/top_pc/go_pod_top.jpg);
    }
    #mainVisualCarousel .carousel-item:nth-child(12) .cr-placeholder {
        background-image: url(/img/top_pc/lan_isilencer_top.jpg);
    }

    /*ニュースフィード*/
    #newsFeedCarousel .card,
    .reviews .card:not(.video) {
        margin: 0 auto;
    }

    #newsFeedCarousel .card {
        max-width: 975px;
    }


    #newsFeedCarousel .banner img {
        max-height: 310px;
    }


    #newsFeedCarousel .slick-slide {
        transform: scale(.9);
        transition: 0.5s;
    }

    #newsFeedCarousel .slick-current {
        transform: scale(1);
    }

    #newsFeedCarousel .card p,
    .reviews .card p {
        font-size: 1.8rem;
    }

    #newsFeedCarousel .card a,
    .reviews .card a {
        font-size: 1.8rem;
    }

    #newsFeedCarousel .card small,
    .reviews .card small {
        font-size: 1.6rem;
    }


    /*ブランド紹介セクション */
    #brandCopy .cr-placeholder {
        width: 100%;
        height: auto;
        min-height: 50vw;
        overflow: hidden;
    }

    #brandCopy .cr-placeholder .row {
        height: auto;
        min-height: 25vw;
    }

    #brandCopy .cr-placeholder .captionbox {
        background: -moz-linear-gradient(left, rgba(20, 27, 77, 0.8), rgba(3, 4, 10, 0.8));
        background: -webkit-linear-gradient(left, rgba(20, 27, 77, 0.8), rgba(3, 4, 10, 0.8));
        background: linear-gradient(90deg, rgba(20, 27, 77, 0.8), rgba(3, 4, 10, 0.8));
        /*        max-width: 800px;*/
    }

    #brandCopy .cr-placeholder .captionbox h1 {
        margin-top: 10px;
        /*        font-size: 1.4rem;*/
        font-size: 2.4rem;
    }

    #brandCopy .cr-placeholder .captionbox p {
        font-size: 1.6rem;
        line-height: 3.3rem;
        margin-bottom: 0;
    }

    #brandCopy .cr-placeholder {
        background-image: url(/img/top_pc/Brand_PC.jpg);
    }


    /*ダウンロードセクション*/
    .download h1,
    .news-column h1 {
        font-size: 3.4rem;
    }

    .download a.btn {
        font-size: 3.0rem;
    }

    /*最新ニュース＆コラムセクション*/
    .article-note h5 {
        padding: 20px 0;
        margin: 0;
        font-size: 2.8rem;
    }

    .article-note p {
        font-size: 1.8rem;
        line-height: 1.75;
    }

    section.news-column .article:nth-last-child(3) h5 {
        padding-top: 0;
    }

    section.news-column .article:last-child .article-note {
        border-bottom: none;
    }

    .news-column a.btn {
        font-size: 2.4rem;
        margin: 20px auto;
    }

    /*---下層ページ---*/
    h2 {
        font-size: 4.8rem;
        border-bottom: 2px #ff6720 solid;
    }

    h4 {
        font-size: 2.8rem;
    }

    .second-menu {
        top: 120px;
    }

    .second-menu h3 {
        font-size: 3.0rem;
        line-height: 1.2;
    }

    .second-menu .nav {
        flex-wrap: wrap;
        background-color: transparent;
        background: none;
        border-bottom: none;
    }

    .second-menu .nav a {
        color: #fff
    }

    .nav-tabs .nav-link {
        padding: 1rem 6rem;
    }

    .third-menu {
        top: 170px;
    }

    .third-menu h3 {
        font-size: 3.0rem;
        line-height: 1.2;
    }

    .third-menu .nav {
        flex-wrap: wrap;
        background-color: transparent;
        background: none;
        border-bottom: none;
    }

    .third-menu .nav a {
        color: #fff
    }

    /*bug fix NO.8*/
    .second-menu .nav li,
    .third-menu .nav li {
        margin-top: auto;
        margin-bottom: auto;
    }


    .stick {
        top: 119px;
    }



    .info-head {
        border-bottom: 0;
        border-right: 1px #c1c6c8 solid;
    }

    /*ページトップボタン*/
    #pagetop {
        width: 60px;
        height: 60px;
    }

    #pagetop .triangle {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 18px solid #fff;
    }


    /*ページリンク位置調整*/
    #phantom,
    #pro,
    #neo,
    #micro,
    #zen,
    #nano,
    #x,
    #go,
    #accessories,
    #others,
    #legacy,
    #dl,
    #howto,
    #problem {
        padding-top: 180px;
        margin-top: -180px;
    }

    .tab-pane #important,
    .tab-pane #dl,
    .tab-pane #howto,
    .tab-pane #important-proidsd,
    .tab-pane #dl-proidsd,
    .tab-pane #howto-proidsd,
    .tab-pane #important-midsddiablo,
    .tab-pane #dl-midsddiablo,
    .tab-pane #howto-midsddiablo,
    .tab-pane #important-bluetooth,
    .tab-pane #dl-bluetooth,
    .tab-pane #howto-bluetooth {
        padding-top: 230px;
        margin-top: -230px;
    }


    /*---製品詳細ページ---*/

    .sns-share{
        top: 80px;
    }

    .product-image {
        background-position: center top;
        background-repeat: no-repeat;
        -webkit-background-size: 70%;
        background-size: 70%;
    }

    .product-name img {
        /*        padding-top: 43vw;*/
        padding-top: 30.1vw;
        width: 38.5vw;
        max-width: 55rem;
        font-size: 7.6rem;
    }
    
    .product-name object.name-logo {
        /*        padding-top: 43vw;*/
        padding-top: 30.1vw;
        width: 38.5vw;
        max-width: 55rem;
        font-size: 7.6rem;
    }

    .product-catchcopy {
        font-size: 3.2rem;
        margin: 40px 0 !important;
        letter-spacing: 0.05em;
    }

    .awardslick {
        padding: 0 5vw;
        width: 60%;
        margin: auto;
    }

    .award img.award-icon {
        width: 120px;
    }

    .award .slide-arrow {
        transform: scale(1, 1)
    }

    .feature {
        padding: 50px 0;
    }

    .feature-image,
    .feature-text {
        width: 50%;
    }

    .feature h2 {
        font-size: 4.8rem;
    }

    .feature p,
    .feature li {
        font-size: 1.8rem;
    }


    .feature.feature-second .container {
        padding: 30vw 0 0;

    }

    .feature.feature-second .feature-text {
        margin: auto;
        width: 50vw;
        min-width: 750px;
    }


    .feature.feature-second .feature-text h2,
    .feature.feature-fourth .feature-text h2 {
        margin-bottom: 20px;
        font-size: 3.6rem;
    }


    .feature.feature-fourth {
        height: auto;
        min-height: auto;
        background-color: rgb(20, 27, 77);
        padding: 0;
    }

    .feature.feature-fourth .container-fluid {
        display: flex;
        height: auto;
        min-height: 40vw;
    }

    .feature.feature-fourth .feature-image {
        top: auto;
        bottom: auto;
        height: 100%;
        z-index: 0;
        width: auto;
    }

    .feature.feature-fourth .feature-image img {
        height: 100%;
        object-fit: cover;

        /*bug fix NO.4*/
        min-width: 56vw;
        width: auto;
    }

    .feature.feature-fourth .feature-text {
        padding: 40px 20px 20px;
        position: relative;
        z-index: 10;

        margin: auto 9vw auto auto;

        width: 34vw;
        min-width: 480px;
        height: auto;

        background: rgba(20, 27, 77, 0.8);


    }

    .tec,
    .spec,
    .product-download,
    .reviews {
        padding-top: 30px;
    }

    .tec h3,
    .spec h3,
    .product-download h3,
    .reviews h3 {
        font-size: 4.8rem;
        padding-bottom: 15px !important;
    }

    .tec-items {
        padding: 20px 0;
    }

    .tec-icon {
        padding-bottom: 0;
    }

    .tec-icon img {
        width: 200px;
    }

    .tec-text {
        padding-left: 0;
        padding-right: 0;
        font-size: 1.8rem;
    }

    .spec-items {
        padding-top: 20px;
    }

    .download-item h4 {
        font-size: 2.4rem;
    }

    .download-item img.dl-btn {
        width: 40px;
    }

    .right-side .spec-item:first-child {
        border-top: 1.5px solid #c1c6c8 !important;
    }

    .right-side .download-item:first-child {
        border-top: 1.5px solid #c1c6c8 !important;
    }


    /*---製品一覧ページ---*/

    section.manual-series {
        margin-top: 40px;
        font-size: 1.8rem;
    }

    section.manual-series:nth-child(1) {
        margin-top: 20px;
    }

    section.manual-series:nth-child(10) {
        margin-top: 90px;
        margin-bottom: 30px;
    }

    section.manual-series:nth-child(10) h2 {
        font-size: 3.0rem;
    }

    section.manual-series .product {
        min-height: 14rem;
        font-size: 2.4rem;
    }

    /*---ドライバDLページ---*/
    .dl-info {
        border-top: 2px solid #c1c6c8;
        border-bottom: 2px solid #c1c6c8;
    }


    .dl-info .dl-table,
    .dl-table-title,
    .dl-table-detail {
        width: 100%;
        border: 0;
    }

    .dl-info .dl-table h4 {
        font-size: 2.4rem;
    }

    .dl-table-title h4,
    .dl-table-detail h4 {
        font-size: 3.4rem;
    }

    .dl-info .dl-table h5,
    .dl-table-title h5,
    .dl-table-detail h5 {
        font-size: 1.4rem;

    }

    .dl-info .dl-column {
        border-right: 4px #fff solid;
    }

    .dl-info .dl-column:nth-child(4) {
        border: 0;
    }

    .firmware-dl .dl-info .dl-column:nth-child(4) {
        border-right: 4px #fff solid;
    }

    .firmware-dl .dl-info .dl-column:nth-child(5) {
        border: 0;
    }


    #dlClp-bluetooth .download a {
        font-size: 1.8rem;
    }

    #dlClp-bluetooth .download a img {
        height: 20px;
        width: 20px;
    }









    /* ---------------- for Firefox only ----------------*/
    @-moz-document url-prefix() {

        header nav.container {
            overflow-y: auto;
            overflow-x: hidden;
        }

        /*
        .feature.feature-fourth .feature-image img {
            height: auto;
            width: 56vw;
        }
*/
        /*

        .feature.feature-fourth .feature-image {
            clip-path: none;
        }


        .feature.feature-fourth .feature-image img {
            clip-path: polygon(0 0, 77% 0, 100% 100%, 0% 100%);
            min-width: 56vw;
            width: auto;
        }
*/

    }

    /* --------------------------------------------------*/




}
