/*
Theme Name: dp-fresco子テーマ
Template: dp-fresco
*/

html,
body {
	font-size: 16px;
	scroll-behavior: smooth; /* スムーススクロール */
	overflow-y: scroll;
	scroll-padding-top: 80px; /* ヘッダー固定でのアンカーリンク調整 */
}
b, strong {
    font-weight: bold;
}
h1, h2, h3, h4 {
	font-weight: bold;
}
img {
	max-width: 100%;
	height: auto;
}

.site-header {
    width: 100vw;
	height: 120px;
	padding: 0;
    -webkit-transition: all .2s;
    transition: all .2s;	
    background: #fff;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    top: 0;
    z-index: 1000;
}

/* スクロール後 */
.site-header.is-down {
    position: fixed;
    top: 0;	
    left: 0;	
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.site-header__inner {
	height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    z-index: 1000;	
}

.site-logo img {
    height: 100px;
    vertical-align: middle;
	padding: 20px;
}

/* --- グローバルナビ --- */
.global-nav {
    display: flex;
    align-items: center;
	padding-bottom: 5px;
}

.global-nav__list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0 0 4px;
}

.global-nav__list a {
    color: #000;
	display: block;
    font-family: "Didact Gothic", sans-serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 5px;
    text-decoration: none;
    text-align: center;
    font-size: 1.4rem;
	font-size: 20px;
	font-size: clamp(16px, 6.154px + 0.962vw, 20px);
}

@media screen and (max-width: 1246px) {
	.site-logo img {
		position: absolute;
		top: -10px;
		max-height: 90px;
	}	
}

.global-nav__list a span {
	font-family: "Noto Sans JP", sans-serif;
	font-size: .8rem;
	font-size: 12px;
	display: block;
}

.nav__block {
	display: flex;
	flex-flow: column;
	margin-left: auto;
}
.nav__block--flex {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 16px;
}
/* --- 検索 --- */
.header-search {
    margin-left: 20px;
	margin-top: 4px;
}
.header-search .search-form {
	margin: 0 auto;
}
.search-form input[type="search"] {
    border-radius: 20px;
	height: 36px;
}
.search-form input {
	font-size: .8rem;
	font-size: 8px;
}
button[type="submit"] {
	color: #ccc !important;
}
.searchform {
	position: relative;
	width: 350px;
	max-width: 100%; /* 必要に応じて調整 */
}
.searchform__inner {
	position: relative;
	width: 100%;
}
.searchform__inner input[type="search"] {
	width: 100%;
	padding: 0 36px 0 12px; /* 右側に余白を作る */
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1.4rem;
	font-size: 14px;
	
	color: #333;
}
.searchform__inner button {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	color: #ccc;
	cursor: pointer;
	padding: 0;
	line-height: 1;
}
.searchform__inner i {
	font-size: 20px;
	font-size: 20px;	
	background: #fff;
}

/* --- 言語切替 --- */
.lang-switch {
    display: flex;
    margin-left: 20px;
	position: relative;
    z-index: 1001; /* 他のヘッダー要素より上 */
    pointer-events: auto;
}
.site-header::before,
.site-header::after {
    pointer-events: none !important;
}
.lang-btn {
    display: inline-block;
    padding: 2px 4px;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    background: #444;
	font-family: "Didact Gothic", sans-serif;
	font-size: 1rem;
	font-size: 10px;
    color: #fff;
	line-height: 40px;
	text-align: center;
    text-decoration: none;
}

.lang-btn.active {
    background: #222;
}

/* --- CTAボタン --- */
.header-cta {
	height: 140px;
    display: flex;
    margin-left: 20px;
	text-align: center;
	border: none;
}

.header-cta .btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
	font-family: "Didact Gothic", sans-serif;
    font-size: 1.4rem;
	font-size: 18px;
	font-weight: 600;	
    padding: 8px 16px;
    min-width: 140px;
}

.header-cta .btn.primary {
    background: #202f54;
	background-color: var(--deb-primary-color);
    color: #fff;
}
.header-cta .btn.primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    min-height: 70px;
    padding: 12px 16px;
    background-color: var(--deb-primary-color);
    color: #fff !important;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
    text-indent: 0;
    opacity: 1;
    visibility: visible;
    overflow: visible;
}
.header-cta .btn.red {
    background: #d00;
    color: #fff;
	border: none;
}
.header-cta a.btn {
	color: #fff !important;
}
.btn:not([class*="btn-"]) {
    border: none;
}
.site-main {
	max-width: 1200px;
    width: 94%;
    margin-right: auto;
    margin-left: auto;	
}
.home section {
	margin-bottom: 80px;
}
.header-banner-content #banner_title h2 {
    font-family: "Didact Gothic", sans-serif;	
}
.header-banner-content #banner_caption {
    position: relative;
    margin: 4vw auto auto;
    line-height: 1.8;
    font-size: 1.5rem;
	font-size: 15px;
    max-width: 980px;
    text-align: left;
}
.site-footer {
	max-width: 1200px;
    width: 94%;
    margin-right: auto;
    margin-left: auto;		
}
/* --- ハンバーガー（SP用） --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    border: none;
    background: none;
}

.hamburger__bar {
    height: 2px;
    width: 100%;
    background: #000;
}
/*
.header-banner-outer {
	max-height: 70vh;
}
.header-banner-content {
    position: relative;
	top: 40%;
    max-height: 100%;
}
*/


/* DigiPress スライダー画像の強制表示 */

.hd_slider,
.swiper-container,
.swiper-wrapper,
.swiper-slide,
.sl-media.sl-img {
    height: 100vh;
    min-height: 500px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.swiper-container:not(.style-fade):not(.style-horizontal):not(.style-vertical):not(.aslider) {
    margin-top: 0;
}
.caption.tr2 {
	font-size: 20px !important;
	font-weight: bold;
}

/* ページヘッダー */
.ct-whole {
	line-height: 0;
}
.ct-whole .hd-title.single-title span::before,
.ct-whole .hd-title.single-title span::after {
	display: none;
}
.ct-whole.singular .hd-title {
	font-weight: 400;
}

.logo_section {

}
.logo_section .logo-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 50px 40px;
}
.logo_section .logo-section .logo-item {
	max-width: calc(100% / 2 - 20px);
    display: flex;
    align-items: center;         /* 縦中央 */
    justify-content: center;     /* 横中央（任意） */
	padding: 10px;
	border: thin solid #ccc;
	margin-bottom: 50px;
}
.logo_section .logo-section .logo-item a:hover img {
    opacity: 0.6;
    transition: opacity 0.3s;
}

.content p {
	font-size: 16px;
	line-height: 1.6;
	margin: 1em 0;
}
body.home .top_company {
	margin-top: 80px;
}
body.home .top_company th,
body.home .top_company td {
	font-size: 1.4rem;
	font-size: 14px;
	line-height: 1.6;
	padding: 10px 20px;
}
body.home .top_company th {
    white-space: nowrap;
}
body.page-id-18 figure {
	display: none;
}

body.page-id-18 .content-wrap {
    min-width: 1180px;
    margin: 0 auto;
    padding: 0;
}
h2.custom_page_title {
    font-size: 3rem;
    font-family: 'Didact Gothic', sans-serif;
    font-weight: 400;
	font-weight: 600 !important;
    color: #DD210E;
	color: var(--deb-primary-color);
    /*margin-right: 70px;*/
	text-align: center;
}
h2.custom_page_title span {
	font-size: 1.8rem;
	font-size: 18px;
    font-weight: bold;
	color: #000;
    line-height: 1;
    margin-bottom: 40px;	
}
.pickup_product {
	margin: 0 auto 50px;
}
table.c-list_company {
	margin-top: 80px;
}
table.c-list_company th {
	white-space: nowrap;
}
table.c-list_company p {
	margin: 0 0 0.5em;
}
body.page.page-id-12 #sidebar {
	display: block;
}

/*
body:not(.home) h2.custom_page_title {
	position: absolute;
	top: -350px;
	color: #fff;
	right: 0;
	left: 0;
	text-align: center;
	text-shadow: rgb(0, 0, 0) 10px 10px 10px;
}
body:not(.home) h2.custom_page_title span {
	color: #fff;
}
body.page-id-18 h2.custom_page_title {
	position: relative;
	top: -400px;
}
body.page.page-id-12 h2.custom_page_title {
	left: 356px;
}
*/
.ct-hd-title {
    z-index: 9999;
}

body.page-id-12 #ct-hd,
body.page-id-14 #ct-hd,
body.page-id-18 #ct-hd,
body.page-id-24 #ct-hd {
    position: relative;
}

/* #ct-hd の中で縦中央 */
body.page-id-12 .ct-hd-title,
body.page-id-14 .ct-hd-title,
body.page-id-18 .ct-hd-title,
body.page-id-24 .ct-hd-title {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
	color: #fff;
    pointer-events: none;
}

body.page-id-12 .ct-hd-title .custom_page_title,
body.page-id-14 .ct-hd-title .custom_page_title,
body.page-id-18 .ct-hd-title .custom_page_title,
body.page-id-24 .ct-hd-title .custom_page_title {
    margin: 0;
    text-align: center;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;	
	color: #fff;
}
body.page-id-12 .ct-hd-title .custom_page_title span,
body.page-id-14 .ct-hd-title .custom_page_title span,
body.page-id-18 .ct-hd-title .custom_page_title span,
body.page-id-24 .ct-hd-title .custom_page_title span {
	color: #fff;
}
.pc .ct-whole.not-home  {
	padding-top: calc(15vh + 24px); !important;
    padding-bottom: 15vh !important;
}
.page-id-12 .ct-whole,
.page-id-14 .ct-whole,
.page-id-18 .ct-whole,
.page-id-24 .ct-whole {
	padding-top: calc(15vh + 74px) !important;
}
/* ====== Search Box ====== */
.searchbox{
    /* タブのカラーに準じる（必要ならここをタブと同じ値に） */
    --tab-grad-start: #d61e1e;   /* 赤寄り */
    --tab-grad-end:   #ff6a3a;   /* オレンジ寄り */
    --sb-border: #e1e3e5;
    --sb-text:   #333;
    --sb-muted:  #8a8f95;
    --sb-focus:  #9bd0ff;
    --sb-bg:     #fff;

    color: var(--sb-text);
    max-width: 720px;
}

.searchbox__title{
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #cfd4d8;
}

/* アクセシビリティ保持しつつ非表示 */
.searchbox__label{
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.searchbox__form{
    display: grid;
    gap: 12px;
}

/* 入力欄 */
.searchbox__input{
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    border: 1px solid var(--sb-border);
    border-radius: 8px;
    background: var(--sb-bg);
    color: var(--sb-text);
    font-size: 16px;
    line-height: 1.4;
    transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.searchbox__input::placeholder{ color: var(--sb-muted); }
.searchbox__input:focus{
    outline: none;
    border-color: var(--sb-focus);
    box-shadow: 0 0 0 3px rgba(155,208,255,.35);
}

/* 検索ボタン（ピル型・グラデ） */
.searchbox__button{
	margin: 20px auto;
    width: 50%;
    height: 48px;
    border: 0;
    border-radius: 9999px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .04em;
    line-height: 1;
    cursor: pointer;
    background: var(--deb-primary-color);
    box-shadow: 0 8px 22px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.searchbox__button:hover{
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0,0,0,.18), 0 4px 10px rgba(0,0,0,.12);
}
.searchbox__button:active{
    transform: translateY(0);
    filter: brightness(.98);
}
.searchbox__button:focus-visible{
    outline: 3px solid #9bd0ff;
    outline-offset: 3px;
}

/* スマホ少し間隔詰めるなら */
@media (max-width: 480px){
    .searchbox__form{ gap: 10px; }
}

.searchbox__select{
	width:100%;
	height:48px;
	padding:10px 12px;
	border:1px solid #d6d6d6;
	border-radius:6px;
	background:#fff;
	font-size:16px;
}
#google-map {
	width: 100vw;
	/* 親要素の中央に配置する */
	position: relative; 
	left: 50%;
	transform: translateX(-50%);	
	margin-top: 80px;
}

/* PC */
@media screen and (min-width: 1024px) {
	.under_1023 {
		display: none;
	}
}

@media screen and (max-width: 1023px) {
	.over_1023 {
		display: none;
	}
}

/* タブレット */
@media screen and (max-width: 1240px) {
    .hd_slider,
    .swiper-container {
        height: 70vh;
        min-height: 400px;
    }	
    .swiper-slide.style-fade .sl-content .caption,
	.swiper-slide.style-fade .sl-content .title_cap_btn,
	.swiper-slide.style-vertical .sl-content .caption,
	.swiper-slide.style-vertical .sl-content .title_cap_btn,
	.swiper-slide.style-horizontal .sl-content .caption,
	.swiper-slide.style-horizontal .sl-content .title_cap_btn,
	.swiper-slide.style-cube .sl-content .caption,
	.swiper-slide.style-cube .sl-content .title_cap_btn {
        font-size: 11px !important;
    }	
}

/* スマホ */
@media (max-width: 600px) {
    .hd_slider,
    .swiper-container {
        height: 60vh;
        min-height: 300px;
    }
}



/* ハンバーガー */
.hamburger {
    position: relative;
    width: 60px;
    height: 60px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

/* 3本線を絶対中央に配置 */
.hamburger__bar {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 48px;
    height: 2px;
    background: #000;
    transform: translate(-50%, -50%); /* 中央基準 */
    transition: transform .25s ease, opacity .2s ease;
    transform-origin: center center;   /* 念押し */
}

/* 初期並び（上・中・下）：中央から上下にだけずらす */
.hamburger__bar:nth-child(1) {
    transform: translate(-50%, calc(-50% - 18px));
}
.hamburger__bar:nth-child(2) {
    opacity: 1;
}
.hamburger__bar:nth-child(3) {
    transform: translate(-50%, calc(-50% + 18px));
}

/* 開いたとき：中央に集合してからクロスに回転 */
.hamburger.is-active .hamburger__bar:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.is-active .hamburger__bar:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active .hamburger__bar:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーション配慮（任意） */
@media (prefers-reduced-motion: reduce) {
    .hamburger__bar { transition: none; }
}

/* --- レスポンシブ対応 --- */
@media (max-width: 1023px) {
	.over_1024 {
		display: none;
	}
    .global-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        flex-direction: column;
        background: #fff;
        padding: 60px 20px;
        transition: right 0.3s ease;
		z-index: 20;
        overflow-y: auto;
    }
    .global-nav.open {
        right: 0;
    }
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10;
    }	
    .hamburger {
        display: flex;
    }
    .header-cta {
        flex-direction: column;
        width: 100%;
    }
	/* ナビ（モバイル：オフキャンバス） */
	.global-nav {
		position: fixed;
		inset: 0 0 0 auto; /* 右側からスライド */
		width: min(92vw, 500px);
		background: #101638;
		translate: 100% 0;
		transition: translate .28s ease;
		display: block;
		padding: 24px 20px 40px;
		overflow-y: auto;
	}
	.global-nav.is-open {
		translate: 0 0;
		margin-top: 100px;
	}
	.global-nav__list {
		list-style: none;
		margin: 0;
		padding: 0;
	}
	.global-nav__list > li > a {
		display: block;
		padding: 14px 8px;
		color: #fff;
		text-decoration: none;
	}
	.global-nav__list > li > a:hover {
		background: #1926A1;
		outline: none;
	}
    /* メニューリスト（縦書き防止） */
    .global-nav__list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        list-style: none;
        padding: 0;
        gap: 12px;
        writing-mode: horizontal-tb; /* ← 縦書きを強制的に解除 */
    }

    .global-nav__list a {
        font-size: 1.2rem;
        text-decoration: none;
        color: #fff;
        display: block;
		text-align: left;
		z-index: 999;
    }
	.global-nav__list a span {
		font-size: .8rem;
	}
	/* オーバーレイ */
	.nav-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0,0,0,.4);
		opacity: 0;
		pointer-events: none;
		transition: opacity .28s ease;
		margin-top: 100px;
	}
	.nav-overlay.is-open {
		opacity: 1;
		pointer-events: auto;
	}	
}

@media screen and (max-width: 600px) {
	.header-search {
		display: none;
	}
	.lang-switch {
		margin-right: 20px;
	}	
	.global-nav {
		width: min(100vw, 500px);
	}	
    .global-nav__list {
        gap: 0;
    }	
}

body.home .ct-whole,
body.page #sidebar {
	display: none;
}

/*
body.home .content {
    position: relative;
    min-height: 100%;
    height: auto;
    margin: 0 auto auto;
    width: calc(100% - 100px);
    max-width: 1440px;
}
*/
body:not(.home) .content {
    margin: 50px auto;
    /*width: calc(100% - 356px);*/
    max-width: 1680px;
}

.content-wrap.singular {
	width: calc(100% - 40px);
}

@media screen and (max-width: 430px) {
	.content-wrap.singular {
		width: 100%;
	}	
}

.single-article {
	margin-top: -80px;
}
#sidebar {
	margin-top: 50px;
}
.top-service {
    padding: 78px 0;
}

.top-service__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.top-service__head {
    position: relative;
    border-bottom: 4px solid #d6d1cf;
    padding-bottom: 18px;
    margin-bottom: 72px;
}

.top-service__title {
    margin: 0;
    color: #2f2f2f;
    font-size: clamp(3.6rem, 3vw, 5.8rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.08em;
}

.top-service__label {
    position: absolute;
    right: 0;
    bottom: -0.2em;
    margin: 0;
    color: #2f2f2f;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    writing-mode: horizontal-tb;
}

.top-service__intro {
	margin: 30px 0 56px;
}

.top-service__intro p {
    margin: 0;
    color: #4a4a4a;
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.04em;
}

.top-service__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    align-items: start;
}

.top-service-card {
    text-align: center;
}

.top-service-card__image {
    width: min(100%, 252px);
    aspect-ratio: 1 / 1;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
}

.top-service-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: transform 0.6s ease;
}
.top-service-card:hover .top-service-card__image img{
    transform: scale(1.2);
}
.top-service-card__title {
    margin: 0 0 16px;
    color: #7b736d;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.06em;
}

.top-service-card__text {
    margin: 0;
    color: #4f4f4f;
    font-size: 1.6rem;
    line-height: 1.9;
    letter-spacing: 0.04em;
    text-align: left;
}

@media screen and (max-width: 1024px) {
    .top-service {
        padding: 70px 0 90px;
    }

    .top-service__head {
        margin-bottom: 56px;
    }

    .top-service__label {
        position: static;
        margin-top: 16px;
        text-align: right;
        font-size: 3rem;
    }

    .top-service__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 28px;
    }

    .top-service-card__text {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .top-service {
        padding: 56px 0 72px;
    }

    .top-service__inner {
        padding: 0 20px;
    }

    .top-service__head {
        padding-bottom: 14px;
        margin-bottom: 40px;
    }

    .top-service__title {
        font-size: 3.2rem;
        letter-spacing: 0.06em;
    }

    .top-service__label {
        margin-top: 12px;
        font-size: 2.4rem;
    }

    .top-service__intro {
        margin-bottom: 36px;
    }

    .top-service__intro p {
        font-size: 1.5rem;
        line-height: 1.9;
    }

    .top-service__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .top-service-card__image {
        width: min(100%, 220px);
        margin-bottom: 14px;
    }

    .top-service-card__title {
        font-size: 1.8rem;
        line-height: 1.7;
    }

    .top-service-card__text {
        font-size: 1.5rem;
        line-height: 1.8;
    }
}

.footer .ft_title_logo {
    display: block;
    height: 80px;
    margin-bottom: 20px;
}
#footer_menu_ul .menu-item {
    display: inline-block;
    font-size: 14px;
}

/* ===== プロオーディオ個別のみ、デフォルトのヘッダ背景を消す ===== */
.single-pro-audio .ct-hd.no_bgimg {
    display: none;
}

/* ===== ヒーロー（最小構成） ===== */
.product-hero--simple {
    position: relative;
    height: clamp(240px, 45vw, 420px);
    overflow: hidden;
}

.product-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28));
}

.product-hero__inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(10px, 3vw, 24px);
    display: flex;
    justify-content: center;
    padding: 0 16px;
}

.product-hero__title {
    color: #fff;
    font-size: clamp(20px, 16.479px + 0.939vw, 30px);
    letter-spacing: .06em;
    text-align: center;
    text-shadow: rgb(0, 0, 0) 10px 10px 10px;
    margin: 0;
}
.ct-whole .hd-title.single-title span {
    max-width: 90%;
    display: inline-block;
    line-height: 1.6;	
    color: #fff;
    font-size: clamp(20px, 16.479px + 0.939vw, 30px);
	font-size: clamp(30px, 19.437px + 2.817vw, 60px);
	font-weight: bold;
    letter-spacing: .06em;
    text-align: center;
    text-shadow: rgb(0, 0, 0) 10px 10px 10px;
    margin: 0;	
}
.dp_breadcrumb_nav:not(.no_title) a {
    color: #fff;
    font-weight: bold;
}

.product-search-sidebar {
    border: 1px solid #e6e6e6;
    background: #fff;
    padding: 16px;
}
.product-search-sidebar__head {
    background: #4b4b4b;
    padding-top: 14px;
    margin: -16px -16px 16px;
}
.product-search-sidebar__title {
    color: #fff;
    margin: 0;
    text-align: center;
    font-weight: 700;
}
.product-search-sidebar__block {
    margin-top: 16px;
}
p.product-search-sidebar__label {
    margin: 30px 0 0;;
    font-weight: 700;
}
.product-search-sidebar__checks {
    display: grid;
    gap: 10px 16px;
}
.product-search-sidebar__check {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
}
.product-search-sidebar__input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid #d6d6d6;
    border-radius: 6px;
}
.product-search-sidebar__btn {
    width: 100%;
    margin-top: 18px;
    padding: 12px 14px;
    background: #fff;
    color: #d33;
    border-radius: 999px;
    font-weight: 700;
}
.loop-product-name{
    display: block;
    margin-top: 6px;
    font-size: 1.2rem;
    line-height: 1.4;
    opacity: .85;
}
body.search.search-result.pc .ct-whole {
	padding-top: 50px !important;
    padding-bottom: 50px !important;
}
.loop-section.news .loop-meta {
    display: none;
    margin-bottom: 10px;
}
.loop-cell .loop-date .entry-date {
	display: none;
}

h3.pickup_title {
	font-size: 2.6rem;
    font-family: 'Didact Gothic', sans-serif;
    font-weight: 600 !important;
	text-align: center;
	margin-bottom: 30px;
}
.new__product {
	margin-top: 100px;
}
h3.new__product--title {
	font-size: 3rem;
    font-family: 'Didact Gothic', sans-serif;
    font-weight: 600 !important;
	text-align: center;
	margin-bottom: 30px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.product-card__link {
    display: block;
    text-decoration: none;
}

.product-card__thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.product-card__noimg {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f0f0f0;
}

.product-card__title {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.4;
}

.product-card__part {
    margin: 6px 0 0;
    font-size: 13px;
	line-height: 1.6;
    opacity: 0.75;
}

.pro-audio-node__crumb {
    margin: 0 0 12px;
    font-size: 1.3rem;
    opacity: .85;
}

.pro-audio-node__sep {
    margin: 0 8px;
}

.pro-audio-list__title {
    margin: 20px 0 10px;
    font-size: 1.6rem;
}

.pro-audio-list__items {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pro-audio-list__item + .pro-audio-list__item {
    margin-top: 6px;
}
.product-media {
    margin-top: 24px;
}

.product-media__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.product-gallery__main {
    margin: 0 0 12px;
}

.product-gallery__main-img {
    width: 100%;
    height: auto;
    display: block;
}

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.product-gallery__thumb {
    padding: 0;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    cursor: pointer;
    line-height: 0;
}

.product-gallery__thumb.is-active {
    outline: 2px solid rgba(0,0,0,.35);
    outline-offset: 0;
}

.product-gallery__thumb-img {
    width: 100%;
    height: auto;
    display: block;
}

.product-description {
    line-height: 1.9;
}

@media (max-width: 768px) {
    .product-media__grid {
        grid-template-columns: 1fr;
    }

    .product-gallery__thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
}
.brand-feature__title,
.series-top__heading {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.6;
	margin: 16px 0;
}

/* Base */

#products {
	padding: 20px;
	background: #fff;
}
.tabs {
    --tabs-accent: var(--deb-primary-color);   /* アクティブ色 */
    --tabs-bg: #f7f7f7;
    --tabs-border: #e1e1e1;
    --tabs-text: #444;
    --tabs-radius: 10px;
	margin-top: 30px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--tabs-text);
}

/* ラジオは非表示（可アクセスのまま） */
.tabs__radio {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
}

/* タブ見出し */
.tabs__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 6px;
}

.tabs__label {
    display: grid;
    place-items: center;
    padding: 12px 10px;
    border-radius: 8px;
    border: 1px solid var(--tabs-border);
    background: #fff;
	font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
    text-align: center;
}

.tabs__label:hover {
    background: #fafafa;
}

.tabs__label:focus-visible {
    outline: 3px solid #9bd0ff;
    outline-offset: 2px;
}

/* パネル領域 */
.tabs__panels {
    padding: 18px;
    background: #fff;
}

/* デフォルト非表示 */
.tabs__panel {
    display: none;
    animation: tabs-fade .2s ease;
}

@keyframes tabs-fade {
    from { opacity: .6; transform: translateY(2px); }
    to   { opacity: 1;  transform: translateY(0); }
}

/* === 切替ロジック（ラジオの順序に対応） === */
.tabs__radio:nth-of-type(1):checked ~ .tabs__list .tabs__label:nth-child(1),
.tabs__radio:nth-of-type(2):checked ~ .tabs__list .tabs__label:nth-child(2),
.tabs__radio:nth-of-type(3):checked ~ .tabs__list .tabs__label:nth-child(3),
.tabs__radio:nth-of-type(4):checked ~ .tabs__list .tabs__label:nth-child(4){
    background: var(--tabs-accent);
	background-color: var(--deb-primary-color);
    color: #fff;
    border-color: var(--tabs-accent);
    box-shadow: 0 1px 0 0 var(--tabs-accent);
}

.tabs__radio:nth-of-type(1):checked ~ .tabs__panels .tabs__panel:nth-child(1),
.tabs__radio:nth-of-type(2):checked ~ .tabs__panels .tabs__panel:nth-child(2),
.tabs__radio:nth-of-type(3):checked ~ .tabs__panels .tabs__panel:nth-child(3),
.tabs__radio:nth-of-type(4):checked ~ .tabs__panels .tabs__panel:nth-child(4){
    display: block;
}
#tab-1-panel {
	line-height: 2;
}
#tab-2-panel br {
	display: none;
}
/* スマホ調整 */
@media (max-width: 640px){
    .tabs__list{
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 4px;
        padding: 4px;
    }
    .tabs__label{
        padding: 10px 2px;
        font-size: 13px;
    }
    .tabs__panels{
        padding: 10px;
    }
}
.product-detail {
	margin-top: 30px;
	padding: 20px 0;
	border-top: thin solid #ccc;
	border-bottom: thin solid #ccc;
}
.product-detail p {
	line-height: 2;
}

.downloads {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    background: #111;
    color: #fff;
    text-decoration: none;

    border-radius: 2px;
}

.download-btn:hover {
    opacity: .9;
}

.download-btn__left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.download-btn__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 22px;
    font-size: 12px;
    font-weight: 700;
    background: #fff;
    color: #111;
    border-radius: 2px;
    flex: 0 0 auto;
}

.download-btn__text {
    display: block;
    font-size: 14px;
    font-weight: bold;
	color: #fff;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.download-btn__right {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-bottom: 1px solid #fff;
    font-size: 26px;
	color: #fff;
    line-height: 1;
    flex: 0 0 auto;
}
.download-btn__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.download-btn__icon {
    display: block;
    width: auto;
    height: auto;
}

/* SPは1列 */
@media (max-width: 768px) {
    .downloads {
        grid-template-columns: 1fr;
    }
}

/* Related products (3 columns) */
.related-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.related-products__item {
    height: 100%;
}

.related-products__link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.related-products__thumb {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
}

.related-products__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-products__meta {
    margin-top: 12px;
}

.related-products__name {
    margin: 0 0 6px;
    font-weight: 700;
    line-height: 1.4;
}

.related-products__part-number {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.8;
}
.related-products__item {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-products__thumb {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #f3f3f3;
}

.related-products__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.related-products__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.related-products__overlay-title {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.related-products__item:hover .related-products__thumb img {
    transform: scale(1.03);
}

.related-products__item:hover .related-products__overlay {
    opacity: 1;
}

.movie {
	margin-top: 30px;
	padding-top: 30px;
	border-top: thin solid #ccc;
}
.movie__item + .movie__item {
    margin-top: 50px;
}
.movie__item h3.movie__title {
    font-size: 26px;
    font-weight: 500;
	line-height: 1.6;
    margin-bottom: 10px;
}
.movie__embed {
    position: relative;
    width: 100%;
    padding-top: 20px;
    overflow: hidden;
}

.movie__embed iframe,
.movie__embed embed,
.movie__embed object {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* =========================
   Product Mega Menu
========================= */

.product-mega {
    position: relative;
    z-index: 2000;
    margin: 0;
}

/* タブ（赤帯） */
.product-mega__tabs {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #8b1f12;
    min-height: 56px;
	box-shadow: 0 18px 35px rgba(0, 0, 0, .35);
}

/* 今のHTMLは li がタブ */
.product-mega__tabs > li[data-tab] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    min-height: 56px;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
}

.product-mega__tabs > li[data-tab]:hover,
.product-mega__tabs > li[data-tab]:focus-visible {
    background: rgba(0, 0, 0, 0.18);
	background: #000;
    outline: none;
}

.product-mega__tabs > li.is-active {
    background: #111;
}

/* パネル */
.product-mega__panels {

}
.product-mega__panel {
    display: none;
    background: #0b0b0b;
	background: #222;
    color: #fff;
    padding: 50px 20px;
    box-shadow: 0 18px 35px rgba(0,0,0,.35);
    max-width: 90%;
	margin-left: 5%;
	border: thin solid rgba(204, 204, 204, .35);
}

.product-mega__panel.is-active {
    display: block;
}

.product-mega__panel,
.product-mega__panel * {
    color: #fff;
}

.product-mega__panel a {
    color: #fff;
    text-decoration: none;
}
.product-mega__panel a:hover {
    text-decoration: underline;
}

/* ここで左右余白20px */
.product-mega__panel > .mega-audio,
.product-mega__panel > .mega-series-only {
    padding: 0 20px;
}

/* プロオーディオ（ブランド5列） */
.mega-audio {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}
li.mega-brand__series-item {
	margin-top: 16px;
}
ul.mega-brand__series li.mega-brand__series-item a.mega-brand__series-link {
    color: #fff;
	line-height: 1.6;
	font-size: 16px;
	margin-left: 1em;
}
.mega-brand__logo img {
	width: auto;
	height: 55px;
}
/* 他カテゴリ（シリーズ4列） */
.mega-series-only {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}
.mega-audio,
.mega-brand-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;	
}
.mega-brand__name {
    border: thin solid #8b1f12;
    padding: 10px 26px;
    background: #fff;
    font-size: 26px;
    color: #000;
    font-weight: bold;
}
.mega-brand__models {
	margin-top: 30px;
}
/* DJ */
.product-mega__panel[data-panel="dj"] {
    color: #fff;
}
.mega-brand--ecler .mega-brand__logo img {
    filter: brightness(0) invert(1);
	max-width:  250px;
	/*margin-bottom: 30px;*/
}
.mega-brand__models-item {
	font-size: 16px;
	margin-bottom: 20px;
	margin-left: 1em;
}
.mega-brand__models-item:last-of-type {
	margin-bottom: 0;	
}

.tab-content table {
    width: 100%;
    margin-bottom: 30px;
}

@media (max-width: 980px) {
    .global-nav.is-open {
        margin-top: 140px;
    }	
	.product-mega {
		margin-top: -20px;
	}	
    .mega-audio {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .mega-series-only {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .global-nav.is-open {
        margin-top: 140px;
    }	
	.product-mega {
		margin-top: -20px;
	}
    .product-mega__tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        gap: 0;
    }
    .mega-audio,
    .mega-series-only {
        grid-template-columns: 1fr;
    }
}

button[type="submit"] {
	color: #fff !important;
	background-color: var(--deb-primary-color) !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .related-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .related-products {
        grid-template-columns: 1fr;
    }
}


.brand-top {
    margin: 0 0 30px;
}
.brand-top__logo {
    margin: 0 0 30px;
}

.brand-top__logo-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
}
/*
.brand-top .pickup_product {
    display: none;
}
.brand-top__media {
    margin: 0 0 16px;
}
*/
.brand-top__img {
    width: 100%;
    height: auto;
    display: block;
}

.brand-top__movie iframe,
.brand-top__movie video {
    width: 100%;
    max-width: 100%;
}

/* 説明文 */
.brand-top__desc {
    color: inherit;
    line-height: 1.8;
}

/* 特徴 3列 */
.brand-features {
	background: #F2F2F2;
    padding: 20px 20px 10px;
}

.brand-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.brand-feature__img img {
    width: 100%;
    height: auto;
    display: block;
}

.brand-feature__title {
    margin-top: 16px;
	font-size: 18px;
    line-height: 1.7;
}
.brand-feature__text {
    margin-top: 10px;
    line-height: 1.7;
}

/* レスポンシブ */
@media (max-width: 980px) {
    .brand-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .brand-features__grid {
        grid-template-columns: 1fr;
    }
}
.pro-audio-series-grid__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pro-audio-series-card {
    display: block;
    text-decoration: none;
}

.pro-audio-series-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.pro-audio-series-card__img,
.pro-audio-series-card__placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3; /* 好みで変更OK */
    object-fit: cover;
    background: #222;
}

.pro-audio-series-card__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}

.pro-audio-series-card:hover .pro-audio-series-card__label,
.pro-audio-series-card:focus-visible .pro-audio-series-card__label {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .pro-audio-series-grid__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .pro-audio-series-grid__list {
        grid-template-columns: 1fr;
    }

    /* スマホは常時表示でもOK */
    .pro-audio-series-card__label {
        opacity: 1;
        transform: none;
    }
}
/* ===== シリーズブロック ===== */
.brand-series {
    margin: 60px 0;
}

.brand-series__title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* ===== グリッド ===== */
.brand-series__grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}


/* ===== カード ===== */
.brand-series__card {
    display: block;
    text-decoration: none;
}

.brand-series__media {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.brand-series__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

/* ===== ホバー表示 ===== */
.brand-series__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity .25s ease;
}

.brand-series__model {
    font-size: 16px;
    font-weight: 700;
}

.brand-series__name {
    font-size: 12px;
	padding: 0 1em;
    margin-top: 6px;
    opacity: 0.9;
    line-height: 1.4;
}


.brand-series__card:hover .brand-series__overlay,
.brand-series__card:focus-visible .brand-series__overlay {
    opacity: 1;
}

/* ===== レスポンシブ ===== */
@media (max-width: 1024px) {
    .brand-series__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px){
    .mega-models,
    .brand-series__grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .mega-models,
    .brand-series__grid {
        grid-template-columns: 1fr;
    }

    /* スマホは常時表示 */
    .brand-series__overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
        justify-content: flex-end;
        padding: 12px;
    }
}

/* ===== series-top ===== */
.series-top{
    margin: 0 0 40px;
}

.series-top__movie iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
}

.series-top__img,
.series-top__img2-img{
    width: 100%;
    height: auto;
    display: block;
}

.series-top__desc{
    margin-top: 16px;
}

/* ===== series-feature ===== */
.series-feature {
	background: #F2F2F2;
	padding: 20px 20px 10px;
}

.series-feature__grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.series-feature__img-el{
    width: 100%;
    height: auto;
    display: block;
}

.series-feature__text{
    margin-top: 12px;
}

/* ===== series-model (3列) ===== */
.series-model {
	margin-top: 80px;
}
.series-model__grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.series-model__card{
    display: block;
    text-decoration: none;
}

.series-model__thumb {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.series-model__img {
    width: 100%;
    height: auto;
    display: block;
}

.series-model__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .2s ease;
    background: rgba(0, 0, 0, .55);
    text-align: center;
    padding: 12px;
}

.series-model__code {
    font-weight: 700;
    font-size: 16px;
	color: #fff;
}

.series-model__name {
    margin-top: 6px;
    font-size: 12px;
	color: #fff;
    opacity: .95;
}

.series-model__card:hover .series-model__overlay,
.series-model__card:focus-visible .series-model__overlay {
    opacity: 1;
}

/* responsive */
@media (max-width: 980px) {
    .series-feature__grid,
    .series-model__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .series-feature__grid,
    .series-model__grid {
        grid-template-columns: 1fr;
    }
}

/* トップに戻る：浮動ボタン */
.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent; /* 画像のみ表示 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    /* フッター手前で持ち上げるオフセット（JSで更新） */
    transform: translateY(calc(var(--bt-offset, 0px) * -1));
}
.back-to-top img {
    display: block;
    width: 60px;
    height: 60px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.back-to-top:hover img {
    transform: scale(1.06);
    opacity: 0.9;
}

.content-wrap {
	padding: 0;
}
.content-wrap p {
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: .02em;
}
table.access {
	width: 100%;
}
th.nowrap {
	width: 5em;
	white-space: nowrap;
}
/* 非表示設定 */
.ct-whole .hd-meta,
.second_row,
#comments_area,
.author_info {
    display: none;
}
.single-article:not(.has_profile):not(.as-home)::before,
.single-article:not(.has_profile):not(.as-home)::after {
    content: none;
}

/* 英語ページだけに適用 */
html[lang="en"] .en_none,
html[lang="en"] a.btn.primary,
html[lang="en"] h2.custom_page_title span {
    display: none;
}
/* 表示状態 */
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

/* 低速回線・ユーザー設定配慮 */
@media (prefers-reduced-motion: reduce) {
    .back-to-top,
    .back-to-top img {
        transition: none;
    }
}


.form_head {
	margin: 50px 0;
}
.contact-form-custom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px 40px;
	padding: 0 20px;
}

.contact-form-custom br {
	display: none;
}
.contact-form-custom .cf7-row {
    margin-bottom: 42px;
}

.contact-form-custom .cf7-label,
.contact-form-custom .cf7-required-title,
.contact-form-custom .cf7-person-label,
.contact-form-custom .cf7-sub-label {
    display: block;
    margin-bottom: 12px;
    color: #555;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.contact-form-custom .required {
    color: #d92c2c;
    margin-left: 4px;
}

.contact-form-custom .cf7-input,
.contact-form-custom .cf7-select {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 2px solid #cfcfcf;
    border-radius: 18px;
    background: #f8f8f8;
    color: #333;
    font-size: 16px;
    line-height: 1.4;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.contact-form-custom textarea.cf7-input {
    height: 180px;
    padding: 20px;
    resize: vertical;
}

.contact-form-custom .cf7-input::placeholder,
.contact-form-custom .cf7-select,
.contact-form-custom .cf7-select:invalid {
    color: #b8b8b8;
    font-size: 16px;
}

.contact-form-custom .cf7-row-person {
    margin-bottom: 46px;
}

.contact-form-custom .cf7-person-block {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    column-gap: 24px;
    margin-bottom: 22px;
}

.contact-form-custom .cf7-person-block:last-child {
    margin-bottom: 0;
}

.contact-form-custom .cf7-person-label {
    margin-bottom: 0;
}

.contact-form-custom .cf7-person-fields {
    display: flex;
    gap: 34px;
}

.contact-form-custom .cf7-half {
    width: calc((100% - 34px) / 2);
}

.contact-form-custom .cf7-address-block {
    margin-bottom: 28px;
}

.contact-form-custom .cf7-address-block:last-child {
    margin-bottom: 0;
}

.contact-form-custom .cf7-zip-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-form-custom .cf7-zip-box {
    width: 150px;
}

.contact-form-custom .cf7-zip-hyphen {
    color: #666;
    font-size: 16px;
    line-height: 1;
}

.contact-form-custom .cf7-select {
    padding-right: 64px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='12' viewBox='0 0 20 12'><path d='M2 2l8 8 8-8' fill='none' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 22px center;
    background-size: 20px 12px;
}

.contact-form-custom .wpcf7-form-control-wrap {
    display: block;
}

.contact-form-custom .wpcf7-not-valid-tip {
    margin-top: 8px;
    font-size: 14px;
}

@media screen and (max-width: 1023px) {

    .contact-form-custom .cf7-label,
    .contact-form-custom .cf7-required-title,
    .contact-form-custom .cf7-person-label,
    .contact-form-custom .cf7-sub-label {
        font-size: 16px;
    }

    .contact-form-custom .cf7-input,
    .contact-form-custom .cf7-select {
        height: 62px;
        font-size: 15px;
        border-radius: 14px;
    }

    .contact-form-custom .cf7-person-block {
        grid-template-columns: 120px 1fr;
        column-gap: 16px;
    }

    .contact-form-custom .cf7-zip-box {
        width: 120px;
    }

    .contact-form-custom .cf7-zip-hyphen {
        font-size: 15px;
    }
}

@media screen and (max-width: 767px) {

    .contact-form-custom {
        padding: 0 15px 30px;
    }

    .contact-form-custom .cf7-row {
        margin-bottom: 28px;
    }

    .contact-form-custom .cf7-label,
    .contact-form-custom .cf7-required-title,
    .contact-form-custom .cf7-person-label,
    .contact-form-custom .cf7-sub-label {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .contact-form-custom .cf7-person-block {
        grid-template-columns: 1fr;
        row-gap: 8px;
        margin-bottom: 18px;
    }

    .contact-form-custom .cf7-person-fields {
        gap: 12px;
    }

    .contact-form-custom .cf7-half {
        width: calc((100% - 12px) / 2);
    }

    .contact-form-custom .cf7-input,
    .contact-form-custom .cf7-select {
        height: 54px;
        padding: 0 14px;
        font-size: 14px;
        border-radius: 12px;
    }

    .contact-form-custom .cf7-zip-wrap {
        gap: 10px;
    }

    .contact-form-custom .cf7-zip-box {
        width: 100px;
    }

    .contact-form-custom .cf7-zip-hyphen {
        font-size: 14px;
    }

    .contact-form-custom .cf7-select {
        padding-right: 46px;
        background-position: right 14px center;
        background-size: 16px 10px;
    }
}
.submit_btn {
	margin: auto;
	text-align: center;	
	margin-left: 90px;
}
.wpcf7-form input.wpcf7-submit {
    display: inline-block;
    margin: auto;
    text-align: center;
    max-width: 160px;
    font-size: 1.6em;
    border-radius: 999px;
    font-weight: 700;	
}
.top_contact {
	max-width: 1000px;
	margin: 70px auto;
}
.repair_cont {
	max-width: 1000px;
	margin: 70px auto;
}
.repair_cont a {
	color: blue;
}
.ct-whole .hd-title:not(.single-title) span::before {
	content: none;
}


/* ブランド一覧  */

/*
body.page-template-page-brand-catalog .content,
body.page-template-page-brand-catalog #content,
body.page-template-page-brand-catalog main#content {
    width: min(100% - 40px, 1440px) !important;
    max-width: 1440px !important;
    margin: 50px auto !important;
}
*/
body.page-template-page-brand-catalog .content {
	width: 1200px;
	max-width: 100%;
}

body.page-template-page-brand-catalog .brand-catalog-hero__inner,
body.page-template-page-brand-catalog .brand-catalog__inner {
    width: 100%;
    max-width: 100%;
}

body.page-template-page-brand-catalog .brand-catalog-hero__inner,
body.page-template-page-brand-catalog .brand-catalog__inner {
    width: min(100% - 32px, 1400px);
    max-width: 1400px;
    margin-inline: auto;
}

body.page-template-page-brand-catalog .brand-card {
    min-width: 0;
}

body.page-template-page-brand-catalog .brand-catalog__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

body.page-template-page-brand-catalog .brand-card {
    min-width: 0;
}

.brand-catalog-page {
    background: #f7f7f7;
    background: #fff;
}

.brand-catalog-hero {
    padding: 72px 0 32px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.brand-catalog-hero__inner {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
}

.brand-catalog-hero__title {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
    text-align: center;
}

.brand-catalog {
    padding: 56px 0;
}

.brand-catalog__inner {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
}

.brand-catalog__section + .brand-catalog__section {
    margin-top: 64px;
}

.brand-catalog__section-title {
    margin: 0 0 24px;
    padding-left: 16px;
    border-left: 6px solid #7a1f1f;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
}

.brand-catalog__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.brand-card {
    height: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.brand-card__link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.brand-card__link:hover {
    transform: translateY(-2px);
}

.brand-card__head {
    padding: 28px 28px 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.brand-card__logo {
    display: flex;
    align-items: center;
    min-height: 90px;
    margin-bottom: 16px;
}

.brand-card__logo img {
    display: block;
    max-width: 100%;
    max-height: 72px;
    width: auto;
    height: auto;
}

.brand-card__name {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
}

.brand-card__body {
    padding: 24px 28px 28px;
}

.brand-card__body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: #333;
}

.brand-card__body p + p {
    margin-top: 1em;
}

.brand-card__footer {
    padding: 0 28px 28px;
}

.brand-card__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 10px 18px;
    border: 1px solid #222;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
}

@media screen and (max-width: 1024px) {
    .brand-catalog-hero__title {
        font-size: 34px;
    }

    .brand-catalog__section-title {
        font-size: 24px;
    }

    .brand-catalog__grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .brand-catalog-hero {
        padding: 48px 0 24px;
    }

    .brand-catalog-hero__inner,
    .brand-catalog__inner {
        width: min(100% - 24px, 1200px);
    }

    .brand-catalog-hero__title {
        font-size: 28px;
    }

    .brand-catalog {
        padding: 40px 0 56px;
    }

    .brand-catalog__section + .brand-catalog__section {
        margin-top: 48px;
    }

    .brand-catalog__section-title {
        margin-bottom: 20px;
        padding-left: 12px;
        border-left-width: 4px;
        font-size: 22px;
    }

    .brand-card__head {
        padding: 20px 20px 16px;
    }

    .brand-card__logo {
        min-height: 72px;
        margin-bottom: 12px;
    }

    .brand-card__logo img {
        max-height: 56px;
    }

    .brand-card__name {
        font-size: 20px;
    }

    .brand-card__body {
        padding: 18px 20px 20px;
    }

    .brand-card__body p {
        font-size: 14px;
        line-height: 1.8;
    }

    .brand-card__footer {
        padding: 0 20px 20px;
    }
}

@media screen and (max-width: 1200px) {
    body.page-template-page-brand-catalog .brand-catalog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 767px) {
    body.page-template-page-brand-catalog .content,
    body.page-template-page-brand-catalog #content,
    body.page-template-page-brand-catalog main#content {
        width: min(100% - 24px, 1440px) !important;
        margin: 32px auto !important;
    }

    body.page-template-page-brand-catalog .brand-catalog__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.brand-model {
    margin-top: 40px;
    margin-bottom: 40px;
}

.brand-model__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.brand-model__item {
    margin: 0;
    padding: 0;
}

.brand-model__card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.brand-model__media {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #f3f3f3;
}

.brand-model__img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.brand-model__card:hover .brand-model__img {
    transform: scale(1.04);
}

.brand-model__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-model__card:hover .brand-model__overlay {
    opacity: 1;
}

.brand-model__model {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.brand-model__name {
    display: block;
    font-size: 14px;
    line-height: 1.6;
}

.pad_under {
	display: none;
}

/* ========================================
    responsive
======================================== */

@media screen and (max-width: 1024px) {
    .project-archive__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media screen and (max-width: 767px) {
    .project-archive-hero {
        min-height: 160px;
    }

    .project-archive-hero__inner {
        min-height: 160px;
        padding: 20px 16px;
    }

    .project-archive-hero__title {
        font-size: 30px;
        line-height: 1.25;
    }

    .project-archive-breadcrumb__inner,
    .project-archive__inner {
        width: calc(100% - 32px);
    }

    .project-archive-breadcrumb__list {
        min-height: 42px;
    }

    .project-archive-breadcrumb__item {
        font-size: 12px;
    }

    .project-archive-breadcrumb__item:not(:last-child)::after {
        margin: 0 8px;
    }

    .project-archive {
        padding: 56px 16px;
    }

    .project-archive__lead {
        margin-bottom: 32px;
        font-size: 15px;
        line-height: 1.8;
    }

    .project-archive__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card__thumb img,
    .project-card__thumb--placeholder {
        height: 220px;
    }

    .project-card__body {
        padding: 16px;
    }

    .project-card__title {
        font-size: 24px;
        line-height: 1.4;
    }
}

@media screen and (max-width: 1024px) {
    .brand-model__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
	body.page-id-18 .content-wrap {
		min-width: auto;
	}
}


@media screen and (max-width: 768px) {
	.pad_under {
		display: block;
	}
	.product-mega__tabs {
		gap: 40px;
	}
	body:not(.home) .content {
		margin: 30px auto;
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 0 20px;
	}
	body.page-id-18 .content-wrap,
	body.page-id-41 .content-wrap {
		min-width: auto;
		/*margin-top: -80px;*/
	}
	.entry h3,
	.dp_text_widget h3,
	.textwidget h3 {
		font-size: 150%;
	}
	.single-article .entry {
		margin-bottom: 30px;
	}
	.footer .lo-co .inner>div,
	.footer .lo-co .contact .before {
		font-size: 16px;
	}
}

@media screen and (max-width: 767px) {
    .brand-model {
        margin-top: 28px;
        margin-bottom: 28px;
    }

    .brand-model__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .brand-model__model {
        font-size: 20px;
    }

    .brand-model__name {
        font-size: 13px;
    }
}

.spec-table th[colspan="2"] {
	border: none;
	background: #fff;
	padding: 20px 0;
	font-size: 120%;
}
table.spec-table th {
	line-height: 1.8;
    white-space: nowrap;
}
table.spec-table td {
	line-height: 1.8;
}


/* ========================================
    single-video-products.php
======================================== */
.series-list__wrap {
    display: grid;
    gap: 56px;
}

.series-block {
    padding-top: 20px;
	padding-bottom: 20px;
    border-top: thin solid #ccc;	
}

.series-block__title {
    margin: 40px 0;
    line-height: 1.4;
	text-align: center;
}

.series-block__title a {
    font-size: 22px;
    font-weight: 700;	
    color: #fff;
	padding: 10px 30px;
	border: thin solid #8b1f12;
	border-radius: 20px;
    background-color: #8b1f12;
    text-decoration: none;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
	transition: 0.3s ease-in-out;
}

.series-block__title a:hover {
    opacity: 0.8;
}

.series-block__grid {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ========================================
    archive-project.php
======================================== */

/* テーマ標準の archive ヘッダーとパンくずを隠す */
.post-type-archive-project #ct-hd.ct-hd.no_bgimg,
.post-type-archive-project #dp_breadcrumb_nav.dp_breadcrumb_nav {
    display: none !important;
}

/* テーマ側の余白を打ち消す */
.post-type-archive-project .content-wrap.incontainer.clearfix.two-col.cwrap-item {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 !important;
}

.post-type-archive-project main#content.project-archive-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* ========================================
    hero
======================================== */

.project-archive-hero {
    position: relative;
    width: 100vw;
    min-height: 420px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

.project-archive-hero__bg {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #6d2417;
}

.project-archive-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.24);
}

.project-archive-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 20px;
    text-align: center;
}

.project-archive-hero__title {
    margin: 0;
    max-width: 90%;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* ========================================
    breadcrumb
======================================== */

.project-archive-breadcrumb {
    position: relative;
    z-index: 5;
    width: 100vw;
    margin-top: -60px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: #fff;
    padding: 0 20px;	
}

.project-archive-breadcrumb__inner {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
	margin-left: 0;
}

.project-archive-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    min-height: 60px;
    padding: 0;
    margin: 0;
    list-style: none;	
}

.project-archive-breadcrumb__item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;	
}

.project-archive-breadcrumb__item a,
.project-archive-breadcrumb__item span {
    color: inherit;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
    color: #ffffff;	
}

.project-archive-breadcrumb__item:not(:last-child)::after {
    content: "/";
    margin: 0 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
    archive body
======================================== */

.project-archive {
    padding: 80px 20px;
}

.project-archive__inner {
    width: min(100%, 1200px);
    margin: 0 auto;
}

.project-archive__lead {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 2;
    color: #555555;
}

.project-archive__lead > *:last-child {
    margin-bottom: 0;
}

.project-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.project-card {
    height: 100%;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.project-card__link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.project-card__thumb img,
.project-card__thumb--placeholder {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #f3f3f3;
}

.project-card__body {
    padding: 20px;
}

.project-card__title {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.4;
}

.project-card__sub-title {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
}

.project-card__excerpt {
    font-size: 14px;
    line-height: 1.8;
    color: #333333;
}

.project-archive__pagination {
    margin-top: 48px;
}

.project-archive__pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.project-archive__pagination a,
.project-archive__pagination span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #d9d9d9;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
}

.project-archive__pagination .current {
    color: #ffffff;
    background: #222222;
    border-color: #222222;
}

.project-archive__empty {
    font-size: 16px;
    line-height: 1.8;
}


/* ========================================
    project single
======================================== */

/* テーマ標準の余計なヘッダー・パンくずを非表示 */
.single-project #ct-hd.ct-hd.no_bgimg,
.single-project #dp_breadcrumb_nav.dp_breadcrumb_nav {
    display: none !important;
}

.single-project main#content.project-single-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* ========================================
    hero
======================================== */

.project-hero {
    position: relative;
    width: 100vw;
    min-height: 420px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 0;
    overflow: hidden;
}

.project-hero__bg {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #6d2417;
}

.project-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
}

.project-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.project-hero__title {
    margin: 0;
    max-width: 90%;
    color: #ffffff;
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    text-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* ========================================
    breadcrumb
======================================== */

.project-breadcrumb {
    position: relative;
    z-index: 5;
    width: 100vw;
    margin-top: -60px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: #fff;	
	padding: 0 20px;
}

.project-breadcrumb__inner {
    /*width: min(100% - 40px, 1100px);*/
    margin: 0 auto;
}

.project-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    min-height: 60px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.project-breadcrumb__item {
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
	font-weight: bold;
    line-height: 1.8;
    color: #ffffff;
    white-space: nowrap;
}

.project-breadcrumb__item a,
.project-breadcrumb__item span {
    color: inherit;
    text-decoration: none;
}

.project-breadcrumb__item:not(:last-child)::after {
    content: "/";
    margin: 0 14px;
    color: rgba(255, 255, 255, 0.65);
}

.project-breadcrumb__item:last-child {
    color: rgba(255, 255, 255, 0.82);
}

/* ========================================
    content
======================================== */

.project-single__inner {
    width: min(100% - 40px, 1100px);
    margin: 0 auto;
    padding: 56px 0 80px;
}

/* 概要タイトル */
.project-summary {
    margin-bottom: 48px;
}

.project-summary__title {
    margin: 0;
    font-size: 28px;
    line-height: 1.8;
    font-weight: 600;
    color: #000;
}

/* セクション */
.project-section-list {
    display: grid;
    gap: 56px;
}

.project-section {
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.project-section__title {
    margin: 0 0 20px;
    font-size: 36px;
    line-height: 1.5;
}

.project-section__content {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 2;
	color: #000;
}

.project-section__content p {
    font-size: 18px;
    line-height: 2;
	color: #000;	
    margin: 0 0 1em;
}

.project-section__content p:last-child {
    margin-bottom: 0;
}

.project-section__images {
    display: grid;
    gap: 24px;
}

.project-section__images--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-section__images--1 {
    grid-template-columns: 1fr;
}

.project-section__image {
    margin: 0;
}

.project-section__image img {
    display: block;
    width: 100%;
    height: auto;
}

/* 参考映像 */
.project-single__reference {
    margin-top: 40px;
    padding: 16px 20px;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
}

.project-single__reference-title {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
}

.project-single__reference-link {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    word-break: break-all;
}

.project-single__reference-link a {
    text-decoration: underline;
}

/* 本文 */
.project-single__main-content {
    margin-top: 56px;
    font-size: 16px;
    line-height: 2;
}

/* ========================================
    responsive
======================================== */

@media screen and (max-width: 768px) {
	.project-archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}	
}

@media screen and (max-width: 767px) {
    .project-hero {
        min-height: 260px;
    }

    .project-hero__inner {
        min-height: 260px;
        padding: 24px 16px;
    }

    .project-hero__title {
        font-size: 34px;
        line-height: 1.3;
    }

    .project-breadcrumb {
        margin-top: -48px;
    }
/*
    .project-breadcrumb__inner {
        width: calc(100% - 32px);
    }
*/
    .project-breadcrumb__list {
        min-height: 48px;
    }

    .project-breadcrumb__item {
        font-size: 12px;
    }

    .project-breadcrumb__item:not(:last-child)::after {
        margin: 0 8px;
    }
	
    .project-summary {
        margin-bottom: 32px;
    }

    .project-summary__title {
        font-size: 28px;
        line-height: 1.7;
    }

    .project-section-list {
        gap: 40px;
    }

    .project-section {
        padding-bottom: 32px;
    }

    .project-section__title {
        margin-bottom: 16px;
        font-size: 24px;
        line-height: 1.5;
    }

    .project-section__content {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.8;
    }

    .project-section__images--2 {
        grid-template-columns: 1fr;
    }	
}


/* トップページのプロジェクト事例 */
#pr_archives {
    padding: 80px 20px;
}

#pr_archives .custom_page_title {
    margin: 0 0 40px;
}

.top-project-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.top-project-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.top-project-card__link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.top-project-card__thumb img,
.top-project-card__thumb-placeholder {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #f3f3f3;
}

.top-project-card__body {
    padding: 20px;
}

.top-project-card__title {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.4;
}

.top-project-card__subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
}

.top-project-list__more {
    margin-top: 40px;
    text-align: center;
}

.top-project-list__more a {
    background-color: var(--deb-primary-color);
    border: thin solid var(--deb-primary-color);	
    color: #fff;
	font-weight: bold;
	transition: background-color 0.5s ease 0s;
}
.top-project-list__more a:hover {
    background-color: #fff;	
    color:var(--deb-primary-color);	
}
.top-project-list__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 240px;
    min-height: 52px;
    padding: 0 24px;
    background: #222222;
    color: #ffffff;
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    .top-project-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media screen and (max-width: 767px) {
    #archives {
        padding: 56px 16px;
    }

    .top-project-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .top-project-card__thumb img,
    .top-project-card__thumb-placeholder {
        height: 220px;
    }

    .top-project-card__body {
        padding: 16px;
    }

    .top-project-card__title {
        font-size: 24px;
    }
}

.entry h2 {
	margin: 50px 16px 30px 20px;
}
.entry h2:first-of-type {
	margin-top: 100px;
}


/* 投稿記事一覧 */
.archive-post-list-wrap {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
    padding: 56px 0 80px;
}

.archive-post-list {
    display: grid;
    gap: 32px;
}

.archive-post-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
    padding: 28px;
    border: 1px solid #e3e3e3;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.archive-post-card__thumb {
    display: block;
    overflow: hidden;
    background: #f5f5f5;
}

.archive-post-card__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.archive-post-card:hover .archive-post-card__thumb img {
    transform: scale(1.04);
}

.archive-post-card__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.archive-post-card__meta {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #8a8a8a;
}

.archive-post-card__date {
    display: inline-block;
}

.archive-post-card__title {
    margin: 0;
    font-size: 28px;
    line-height: 1.45;
    font-weight: 700;
}

.archive-post-card__title a {
    color: #222222;
    text-decoration: none;
    transition: color 0.2s ease;
}

.archive-post-card__title a:hover {
    color: #8f1d14;
}

.archive-post-card__excerpt {
    font-size: 16px;
    line-height: 1.9;
    color: #444444;
}

.archive-post-card__excerpt p {
    margin: 0;
}

.archive-pagination {
    margin-top: 40px;
}

.archive-pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.archive-pagination a,
.archive-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid #cccccc;
    background: #ffffff;
    color: #222222;
    text-decoration: none;
}

.archive-pagination .current {
    background: #8f1d14;
    border-color: #8f1d14;
    color: #ffffff;
}

.archive-post-list__empty {
    padding: 32px 0;
    text-align: center;
    font-size: 16px;
    color: #666666;
}

.archive-post-card.is-no-thumb {
    grid-template-columns: 1fr;
}

@media screen and (max-width: 900px) {
    .archive-post-card {
        grid-template-columns: 220px 1fr;
        gap: 20px;
        padding: 22px;
    }

    .archive-post-card__title {
        font-size: 24px;
    }
}

@media screen and (max-width: 767px) {
    .archive-post-list-wrap {
        width: min(100% - 24px, 1200px);
        padding: 32px 0 56px;
    }

    .archive-post-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
    }

    .archive-post-card__thumb img {
        min-height: auto;
        aspect-ratio: 16 / 9;
    }

    .archive-post-card__title {
        font-size: 20px;
    }

    .archive-post-card__excerpt {
        font-size: 15px;
        line-height: 1.8;
    }
}

.post-single-wrap {
    width: min(100% - 24px, 960px);
    margin: 0 auto;
    padding: 40px 0 80px;
}

.post-single-inner {
    width: 100%;
}

.post-single {
    background: #ffffff;
}

.post-single__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.post-single__cat {
    display: inline-block;
    padding: 6px 12px;
    background: #f3f3f3;
    color: #333333;
    font-size: 13px;
    line-height: 1.4;
    text-decoration: none;
}

.post-single__header {
    margin-bottom: 24px;
}

.post-single__date {
    display: inline-block;
    margin-bottom: 12px;
    color: #777777;
    font-size: 14px;
    line-height: 1.4;
}

.post-single__title {
    margin: 0;
    font-size: 34px;
    line-height: 1.5;
    font-weight: 700;
    color: #222222;
}

.post-single__thumb {
    margin: 0 0 32px;
}

.post-single__thumb img {
    display: block;
    width: 100%;
    height: auto;
}

.post-single__content {
    line-height: 1.9;
    color: #333333;
}

.post-single__content h2,
.post-single__content h3,
.post-single__content h4 {
    line-height: 1.6;
}

.post-single__content p {
    margin: 0 0 1.6em;
}

.post-single__content img {
    max-width: 100%;
    height: auto;
}

.post-single__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #dddddd;
}

.post-single__tag {
    color: #666666;
    text-decoration: none;
    font-size: 13px;
}

.post-single__nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #dddddd;
}

.post-single__nav-prev {
    text-align: left;
}

.post-single__nav-archive {
    text-align: center;
}

.post-single__nav-next {
    text-align: right;
}

.post-single__nav a {
    color: #222222;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .post-single-wrap {
        padding: 24px 0 56px;
    }

    .post-single__title {
        font-size: 26px;
    }

    .post-single__nav {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .post-single__nav-prev,
    .post-single__nav-archive,
    .post-single__nav-next {
        text-align: center;
    }
}

.post-single__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.post-single__cat {
    display: inline-block;
    padding: 6px 12px;
    background: #f3f3f3;
    color: #333333;
    font-size: 13px;
    line-height: 1.4;
}

.post-single__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #dddddd;
}

.post-single__tag {
    display: inline-block;
    padding: 6px 12px;
    background: #f3f3f3;
    color: #666666;
    font-size: 13px;
    line-height: 1.4;
}

.post-single__cat,
.post-single__tag {
    display: inline-block;
    padding: 6px 12px;
    background: #f3f3f3;
    color: #333333;
    font-size: 13px;
    line-height: 1.4;
}


.archive-post-list-wrap {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
    padding: 56px 0 80px;
}

.archive-post-list-head {
    margin-bottom: 32px;
}

.archive-post-list-head__title {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1.4;
    font-weight: 700;
    color: #222222;
}

.archive-post-list-head__desc {
    color: #555555;
    line-height: 1.8;
}

.archive-post-list {
    display: grid;
    gap: 32px;
}

.archive-post-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: start;
    padding: 28px;
    border: 1px solid #e3e3e3;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.archive-post-card.is-no-thumb {
    grid-template-columns: 1fr;
}

.archive-post-card__thumb {
    display: block;
    overflow: hidden;
    background: #f5f5f5;
}

.archive-post-card__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.archive-post-card:hover .archive-post-card__thumb img {
    transform: scale(1.04);
}

.archive-post-card__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.archive-post-card__meta {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #8a8a8a;
}

.archive-post-card__title {
    margin: 0;
    font-size: 30px;
    line-height: 1.5;
    font-weight: 700;
}

.archive-post-card__title a {
    color: #222222;
    text-decoration: none;
}

.archive-post-card__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.archive-post-card__cat {
    display: inline-block;
    padding: 6px 12px;
    background: #f3f3f3;
    color: #333333;
    font-size: 13px;
    line-height: 1.4;
}

.archive-post-card__excerpt {
    font-size: 16px;
    line-height: 1.9;
    color: #444444;
}

.archive-post-card__excerpt p {
    margin: 0;
}

.archive-pagination {
    margin-top: 40px;
}

.archive-pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.archive-pagination a,
.archive-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid #cccccc;
    background: #ffffff;
    color: #222222;
    text-decoration: none;
}

.archive-pagination .current {
    background: #8f1d14;
    border-color: #8f1d14;
    color: #ffffff;
}

.archive-post-list__empty {
    padding: 32px 0;
    text-align: center;
    font-size: 16px;
    color: #666666;
}

@media screen and (max-width: 900px) {
    .archive-post-card {
        grid-template-columns: 240px 1fr;
        gap: 20px;
        padding: 22px;
    }

    .archive-post-card__title {
        font-size: 24px;
    }
}

@media screen and (max-width: 767px) {
    .archive-post-list-wrap {
        width: min(100% - 24px, 1200px);
        padding: 32px 0 56px;
    }

    .archive-post-list-head__title {
        font-size: 28px;
    }

    .archive-post-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
    }

    .archive-post-card__thumb img {
        min-height: auto;
        aspect-ratio: 16 / 9;
    }

    .archive-post-card__title {
        font-size: 20px;
    }

    .archive-post-card__excerpt {
        font-size: 15px;
        line-height: 1.8;
    }
}
.post-hero {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.post-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.post-hero__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 24px, 1440px);
    min-height: 420px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-hero__overlay {
    text-align: center;
    color: #ffffff;
}

.post-hero__title {
    margin: 0;
    font-size: 56px;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

@media screen and (max-width: 767px) {
    .post-hero__inner {
        min-height: 260px;
    }

    .post-hero__title {
        font-size: 32px;
    }
}

body.single-format-standard .ct-whole .meta-cat .cat-link {
    display: none;
}
body.page-id-3 .content,
body.page-id-10 .content,
body.page-id-131 .content,
body.page-id-1178 .content {
    margin-top: 100px;
}

body.page-id-10 .content {
	max-width: 700px;
	margin-bottom: 0;
}
body.page-id-1178 .content {
    width: 500px;
	max-width: 100%;
}

body.page-id-3 .content .entry h2:first-of-type,
body.page-id-131 .content .entry h2:first-of-type {
    margin-top: 30px;
}

.entry h2 {
	font-size: 180%;
}

.entry ol,
.dp_text_widget ol,
.textwidget ol {
    counter-reset: item;
}

.entry ol > li,
.dp_text_widget ol > li,
.textwidget ol > li {
    position: relative;
    list-style: none;
}

.entry ol > li::before,
.dp_text_widget ol > li::before,
.textwidget ol > li::before {
    content: counters(item, ".") "";
    counter-increment: item;
    margin: auto 6px auto -30px;
    width: 26px;
    height: 26px;
    line-height: 26px;
    display: inline-block;
    border-radius: 13px;
    text-align: center;
    font-size: 14px;
    vertical-align: middle;
    color: #ffffff;
    background-color: #612517;
    /*border: 3px solid rgba(255, 255, 255, .64);*/
    opacity: .74;
}

.entry ol li ul,
.dp_text_widget ol li ul,
.textwidget ol li ul {
    margin-top: 8px;
    list-style: circle;
}

.entry ol li ul > li,
.dp_text_widget ol li ul > li,
.textwidget ol li ul > li {
    list-style: circle !important;
    display: list-item !important;
    position: static;
}

.entry ol li ul > li::before,
.dp_text_widget ol li ul > li::before,
.textwidget ol li ul > li::before {
    content: none !important;
    display: none !important;
}


.cf7-row-turnstile .cf7-row__field {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 16px;
}

.top-news {
    padding: 80px 16px 64px;
}

.top-news__list {
    margin-top: 32px;
    border-top: 1px solid #dddddd;
}

.top-news__item {
    display: grid;
    grid-template-columns: 140px 1fr 320px;
    gap: 24px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #dddddd;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.top-news__item:hover {
    opacity: 0.75;
}

.top-news__date {
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
}

.top-news__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.top-news__excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
}

.top-news__empty {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.6;
}

@media screen and (max-width: 767px) {
    .top-news {
        padding: 64px 16px 48px;
    }

    .top-news__item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px 0;
    }

    .top-news__date {
        font-size: 13px;
    }

    .top-news__title {
        font-size: 16px;
    }

    .top-news__excerpt {
        font-size: 13px;
    }
}

/* 製品情報 */

.pickup_product {
	margin: 50px auto 80px;
	text-align: center;
	padding-bottom: 50px;
	border-bottom: thin solid #ccc;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 24px;
}

.product-card {
    min-width: 0;
}

.product-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-card__thumb {
    position: relative;
    overflow: hidden;
    /*background: #f5f5f5;*/
    aspect-ratio: 1 / 1;
}

.product-card__thumb img,
.product-card__thumb--empty {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card__thumb--empty {
    background: #e9e9e9;
}

.product-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.product-card__overlay-title {
    margin: 0;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.product-card__link:hover .product-card__overlay,
.product-card__link:focus-visible .product-card__overlay {
    opacity: 1;
    visibility: visible;
}

.product-card__body {
    padding-top: 14px;
}

.product-card__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #222;
}
body.search-results .loop-product-name,
body.search-results .nav_to_paged,
.product-card__body {
    display: none;
}

@media screen and (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 20px;
    }
}

@media screen and (max-width: 767px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-card__overlay-title {
        font-size: 18px;
    }

    .product-card__title {
        font-size: 16px;
    }
}


@media screen and (min-width: 431px) {
	.related-products__body {
		display: none;
	}
}

@media screen and (max-width: 430px) {
	.site-logo img {
        top: 0;
        max-height: 120px;
    }
	a.glink,
	a.glink.gt-current-lang {
		width: 60px;
	}
	.hamburger {
        margin-top: -10px;
    }
	.global-nav.is-open {
        margin-top: 180px;
    }
	.swiper-slide.style-cube .sl-content .title {
		margin-top: -100px;
	}
	h2.custom_page_title {
		font-size: 30px;
	}
	.logo_section .logo-section {
		flex-flow: column;
		margin: 30px 10px;
	}
	.logo_section .logo-section .logo-item {
		max-width: 100%;
	}
	.site-header.is-down {
    	position: relative;
	}
	.entry h3,
	.dp_text_widget h3,
	.textwidget h3 {
        font-size: 130%;
    }
	.top-service-card__title {
        font-size: 26px;
        line-height: 1.7;
    }
	.top-service,
	#pr_archives,
	.top-news {
        padding: 0 16px;
    }
	body.home .top_company th,
	table.c-list_company th {
		white-space: wrap;
	}
	.product-mega__tabs > li[data-tab] {
		font-size: 16px;
	}
	body:not(.home) .content {
		width: 100%;
		padding: 0 10px;
	}	
	#products {
		padding: 0 10px;
	}
	.product-mega__tabs > li[data-tab] {
		min-height: auto;
	}
    .product-mega__tabs {
        flex-wrap: wrap;
        gap: 0px;
    }	
	.product-mega__panel {
	    max-width: 100%;
    	margin-left: 0;	
	}
	.download-btn {
		max-width: 85vw;
	}
	.related-products__body {
		text-align: center;
		margin-top: 10px;
	}	
	.project-archive-hero__title {
		font-size: 36px;
	}
	.project-archive__grid {
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 20px;
	}	
	.product-mega {
		z-index: 1;
	}
	body.post-type-archive-pro-lighting #ct-hd.ct-hd.no_bgimg .ct-whole.no_bgimg,
	body.post-type-archive-pro-audio #ct-hd.ct-hd.no_bgimg .ct-whole.no_bgimg,
	body.post-type-archive-video-products #ct-hd.ct-hd.no_bgimg .ct-whole.no_bgimg,
	body.post-type-archive-dj-products #ct-hd.ct-hd.no_bgimg .ct-whole.no_bgimg {
		padding-top: calc(15vh + 24px) !important;
	}
	.project-summary__title {
        font-size: 24px;
    }
	.project-section__title {
        font-size: 22px;
    }
	/*
    #dp_breadcrumb_nav {
        height: auto;
        padding: 10px 16px;
        overflow: visible;
    }

    #dp_breadcrumb_nav ul {
        display: flex;
        flex-wrap: wrap;
        white-space: normal;
    }

    #dp_breadcrumb_nav li {
        white-space: normal;
    }	
    #dp_breadcrumb_nav:not(.no_title) {
        margin-top: -20px;
    }

    #dp_breadcrumb_nav {
        height: auto;
        padding: 10px 16px;
        overflow: visible;
    }

    #dp_breadcrumb_nav ul {
        display: flex;
        flex-wrap: wrap;
        white-space: normal;
    }

    #dp_breadcrumb_nav li,
    #dp_breadcrumb_nav li a,
    #dp_breadcrumb_nav li span {
        white-space: normal;
		color: #000;
    }
	*/
}