@charset "UTF-8";


/* ----------------------------------- 上書き ----------------------------------- */
#ibox {
	background: url(../img/ad-fv-pc.png) no-repeat;
	background-size: cover;
	background-position: right center;
}

@media screen and (max-width: 599px) {
	#ibox {
		background: url(../img/ad-fv-sp.png) no-repeat;
		background-position: center;
		background-size: 100%;
	}
}



@media screen and (min-width: 600px) {
	#ibox .txtbox {
		left: 15%;
		right: unset;
	}
}


#content #main .sen.mgt {
	margin-top: unset;
	padding-top: 120px;
}



#content {
	background-color: transparent;
}




/* ----------------------------------- 新規スライドショー----------------------------------- */



/* ad-brand-list */

/* スクロール方向はCSSアニメーションで制御するため、DOMの文字方向は固定する */
.ad-brand-list__item.is-odd .js-ad-brand-slides > ul,
.ad-brand-list__item.is-even .js-ad-brand-slides > ul {
	direction: ltr;
}

/* スライドの中身（画像やテキスト）まで逆向き（右寄せ等）にならないようリセット */
.ad-brand-list__item.is-even .js-ad-brand-slides .ad-brand-list__slide,
.ad-brand-list__item.is-even .js-ad-brand-slides .slick-slide {
	direction: ltr;
}

.ad-brand-list__items {
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	list-style: none;
}

.ad-brand-list {
	--ad-brand-slide-width: clamp(480px, calc(850 / 1920 * 100vw), 850px);
	--ad-brand-slide-height: var(--ad-brand-slide-width);
	--ad-brand-content-width: clamp(900px, calc(1290 / 1920 * 100vw), 1290px);
	--ad-brand-company-size: clamp(13px, calc(16 / 1920 * 100vw), 16px);
	--ad-brand-title-size: clamp(48px, calc(70 / 1920 * 100vw), 70px);
	--ad-brand-text-size: clamp(15px, calc(20 / 1920 * 100vw), 20px);
	--ad-brand-category-size: clamp(12px, calc(15 / 1920 * 100vw), 15px);
	--ad-brand-content-gap: clamp(12px, calc(18 / 1920 * 100vw), 18px);
	--ad-brand-sp-content-top: min(170px, calc(230 / 414 * 100vw));
	--ad-brand-sp-item-height: 600px;
	background-color: #000;
}

@media screen and (max-width:1024px) {
	.ad-brand-list {
		padding-top: 244px;
	}
}


.ad-brand-list__item {
	position: relative;
	overflow: hidden;
	height: var(--ad-brand-slide-height);
	min-height: var(--ad-brand-slide-height);
	max-height: var(--ad-brand-slide-height);
}

@media screen and (max-width: 1024px) {
	.ad-brand-list__item {
		height: var(--ad-brand-sp-item-height);
		min-height: var(--ad-brand-sp-item-height);
		max-height: none;
		margin-top: 0;
		overflow: visible;
	}
}

@media screen and (max-width: 599px) {
	.ad-brand-list__item {
		max-height: none;
	}
}

.ad-brand-list__slide {
	width: var(--ad-brand-slide-width) !important;
	height: var(--ad-brand-slide-height) !important;
	flex: 0 0 var(--ad-brand-slide-width);
}

/* 背景スライド層 */
.ad-brand-list__bg {
	inset: 0;
	z-index: 1;
	height: var(--ad-brand-slide-height);
	overflow: hidden;
}

.ad-brand-list__bg > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ad-brand-list__marquee-track {
	display: flex;
	width: max-content;
	will-change: transform;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	animation: none;
}

.ad-brand-list__marquee-track.is-reverse {
	animation: none;
}

@keyframes ad-brand-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(calc(var(--ad-brand-marquee-distance) * -1), 0, 0);
	}
}

@keyframes ad-brand-marquee-reverse {
	from {
		transform: translate3d(calc(var(--ad-brand-marquee-distance) * -1), 0, 0);
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}

.ad-brand-list .slick-list,
.ad-brand-list .slick-track {
	height: var(--ad-brand-slide-height);
}

.ad-brand-list .slick-slide {
	height: var(--ad-brand-slide-height) !important;
}

.ad-brand-list .slick-slide.ad-brand-list__slide,
.ad-brand-list .slick-slide > .ad-brand-list__slide {
	width: var(--ad-brand-slide-width) !important;
	height: var(--ad-brand-slide-height) !important;
	aspect-ratio: 1 / 1;
}

@media screen and (max-width: 1024px) {
	.ad-brand-list {
		--ad-brand-slide-width: min(390px, calc(390 / 414 * 100vw));
		--ad-brand-slide-height: var(--ad-brand-slide-width);
		--ad-brand-content-width: min(374px, calc(100vw - 40px));
	}
}

.ad-brand-list__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


/* 前面テキスト */
.ad-brand-list__content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	height: 100%;
	width: var(--ad-brand-content-width);
	z-index: 2;
	background: linear-gradient(to right, #000 0%, transparent 100%);
}

@media screen and (max-width: 1024px) {
	.ad-brand-list__content {
		width: var(--ad-brand-content-width);
		height: auto;
		top: var(--ad-brand-sp-content-top);
		bottom: auto;
		left: 50%;
		transform: translateX(-50%);
		background: none;
	}

	.ad-brand-list__content::before {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		width: 100vw;
		height: 70%;
		transform: translateX(-50%);
		background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0) 100%
		);
		pointer-events: none;
	}
}

.ad-brand-list__content-inner{
	position: absolute;
	top: 50%;
	left: calc(105 / 961 * 100%);
	transform: translateY(-50%);
	color: #fff;
	width: max-content;
}

@media screen and (max-width: 1024px) {
	.ad-brand-list__content-inner {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: 100%;
		max-width: none;
		z-index: 1;
	}
}

.company-wrap {
	display: flex;
	align-items: center;
	gap: clamp(12px, calc(21 / 1920 * 100vw), 21px);
	font-size: var(--ad-brand-company-size);
}

@media screen and (max-width: 1024px) {
	.company-wrap {
		font-size: 11px;
		gap: 9px;
		line-height: 22px;
		}
		.company-wrap p{
			margin-bottom:10px
		}

}

.ad-brand-list__change {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: bold;
}

.ad-brand-list__change span {
	font-weight: normal;
	margin-left: 6px;
}

.ad-brand-list__company{
	font-weight: 600;
}

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

	.ad-brand-list__change {
		margin-bottom: 5px !important;
	}
	.ad-brand-list__change span {
		margin-left: 4px;
	}
	.ad-brand-list__company{
		margin-bottom: 5px !important;
	}
}

#content #main h3.ad-brand-list__title {
	color: #fff;
	margin: 0 0 16px;
	font-size: var(--ad-brand-title-size);
	line-height: 1.4;
	text-align: left;
	font-family: "Midashi Go MB31", sans-serif;
	font-style: normal;
}

@media screen and (max-width: 1024px) {
	#content #main h3.ad-brand-list__title {
		font-size: clamp(30px, calc(32 / 414 * 100vw), 32px);
		line-height: calc(46 / 36);
		margin-bottom: 40px;

	}
}

.ad-brand-list__text {
	font-family: "noto-sans-cjk-jp", sans-serif;

	font-size: var(--ad-brand-text-size);
}

@media screen and (max-width: 1024px) {
	.ad-brand-list__text {
		font-size: 12px;
		line-height: calc(25 / 12);
		letter-spacing: 0.04em;
		margin-bottom: 12px !important;
	}
}

.ad-brand-list__category {
	font-family: "noto-sans-cjk-jp", sans-serif;
	font-size: var(--ad-brand-category-size);
	color: rgba(255, 255, 255, 0.5);
	text-shadow:
	0 1px 1px rgba(0, 0, 0, 0.16),   /* ドロップシャドウ（例） */
	0 1px 0 rgba(0, 0, 0, 0.16) inset; /* ← これは無効。text-shadow に inset は使えない */
}

@media screen and (min-width: 1025px) {
	.company-wrap {
		line-height: 1.6;
		margin-bottom: var(--ad-brand-content-gap);
	}

	#content #main h3.ad-brand-list__title {
		margin-bottom: 35px;
		line-height: 1.45;
	}

	.ad-brand-list__text {
		line-height: 1.8;
		margin: 0 0 var(--ad-brand-content-gap);
		letter-spacing: 0.05em !important;
	}

	.ad-brand-list__category {
		line-height: 1.7;
		margin: 0;
	}
}
@media screen and (max-width: 1024px) {
	.ad-brand-list__category {
		color: #646464;
		font-size: 11px;
		font-weight: bold;
		line-height: calc(19 / 11);
		letter-spacing: 0.04em;
		margin: 0;
	}
}






/* ----------------------------------- 新規 ----------------------------------- */

.ad-sp-only {
	display: none;
}

@media screen and (max-width: 599px) {
	.ad-sp-only {
		display: block;
	}
}

.ad-pc-only {
	display: block;
}

@media screen and (max-width: 599px) {
	.ad-pc-only {
		display: none;
	}
}

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

.ad-bg-black {
	background-color: #000;
	padding-block: 166px 243px;
	color: #fff; 
}

@media screen and (max-width: 1024px) {
	.ad-bg-black {
		padding-block: 100px 80px; 
	}

	.ad-bg-black .jissekibox{
		margin-top: -67px;
	}
}

.ad-bg-black #newworksmore{
	width: 100% ;
	margin-top: 127px;
}


@media screen and (max-width: 1024px) {
	.ad-bg-black #newworksmore .sen.m-type2 .headimg{
		padding-top: 137px;
	}
}
.ad-bg-black #newworksmore .sen.m-type2 .text{
	text-align: center !important;
	margin-bottom: 30px !important;
}
@media screen and (max-width: 1024px) {
	#content #main .ad-bg-black .jissekibox h2{
		text-align: center !important;
	}
}

.ad-bg-black #newworksmore .sec.spe{
	width: 100% ;
}

.ad-bg-black .jissekibox .four_box img {
	border: #272727 1px solid;
}



#content #main .ad-bg-black #headimg02.sen.m-type2 .text {
	color: #fff;
	margin: 25px auto 70px;
}

#content #main .ad-bg-black .four_box .workstitle{
	color: #fff;
}


.ad-sub-ttl-sec_video-container {
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
    background: #000;
}

.ad-sub-ttl-sec_video-container video {
	width: 97%;
	height: 100%;
	object-fit: cover;
}

.ad-sub-ttl-sec_video-wrap {
	position: relative;
	z-index: 2;
}



.ad-sub-ttl-sec {
	width: 100%;
	position: relative;
	z-index: 2;
	padding-block: 144px 400px;
}

@media screen and (max-width: 599px) {
	.ad-sub-ttl-sec {
		padding-block: 140px 120px;
	}
}

.ad-sub-ttl-sec_ttl {
	max-width: 1658px;
	width: calc(1500 / 1920 * 100%);
	margin-inline: auto;
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 599px) {
	.ad-sub-ttl-sec_ttl {
		width: 92%;
	}
}

#content #main .ad-sub-ttl-sec_ttl .TL {
	width: 49.4791666667vw;
	max-width: 950px;
	line-height: 0;
}

@media screen and (max-width: 599px) {
	#content #main .ad-sub-ttl-sec_ttl .TL {
		width: 84.5410628vw;
		max-width: 350px;
		margin-bottom: 40px;
	}
}

#content #main .ad-sub-ttl-sec_ttl .TL img {
	display: block;
	width: 100%;
	height: auto;
}


#content #main .ad-sub-ttl-sec_ttl .TX {
	color: #fff;
	margin: 0;
	font-size: clamp(28px, calc(56 / 1920 * 100vw), 56px);
	font-weight: 600;
	line-height: 2;
	letter-spacing: 0.1em;
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@media screen and (max-width: 599px) {
	#content #main .ad-sub-ttl-sec_ttl .TX {
		font-size: clamp(16px, calc(19 / 414 * 100vw), 19px);
		letter-spacing: 0.05em;
	}
}

#content #main .ad-sub-ttl-sec_ttl .TX span {
	-webkit-text-fill-color: transparent;
	background: linear-gradient(90deg, #fff 50%, #ffffff4d 50.1%);
	background-position: 100% 0%;
	background-size: 200% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	will-change: background-position;
}

#content #main .ad-sub-ttl-sec_ttl .TX.ad-tx-svg {
	width: 78.125vw;
	max-width: 1500px;
	line-height: 0;
	position: relative;
	overflow: hidden;
}

#content #main .ad-sub-ttl-sec_ttl .TX.ad-tx-svg.ad-pc-only {
	margin-top: 120px;
}

#content #main .ad-sub-ttl-sec_ttl .TX.ad-tx-svg .ad-tx-svg-base {
	display: block;
	width: 100%;
	height: auto;
	opacity: 0.3;
}

#content #main .ad-sub-ttl-sec_ttl .TX.ad-tx-svg .ad-tx-svg-reveal-row {
	position: absolute;
	inset: 0;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% 100%;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: currentColor;
	clip-path: inset(var(--ad-tx-row-top, 0%) var(--ad-tx-row-right, 100%) var(--ad-tx-row-bottom, 0%) var(--ad-tx-row-left, 0%));
	pointer-events: none;
	will-change: clip-path;
}

@media screen and (max-width: 599px) {
	#content #main .ad-sub-ttl-sec_ttl .TX.ad-tx-svg {
		width: 88.8888889vw;
		max-width: 368px;
	}
}

.ad-sub-ttl-sec_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0);
	z-index: 1;
	opacity: 0;
	will-change: opacity;
}





/* ----------------------------------- アニメ ----------------------------------- */
.ad-fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 1s ease-in-out 0.5s, transform 1s ease-in-out 0.5s;
	will-change: opacity, transform;
}

.ad-fade-in.active {
	opacity: 1;
	transform: translateY(0);
}

.ad-tx-fade {
	opacity: 0;
	transform: translateY(48px);
	filter: blur(6px);
	transition:
		opacity 1.05s ease 0.12s,
		transform 1.05s ease 0.12s,
		filter 1.05s ease 0.12s;
	will-change: opacity, transform, filter;
}

.ad-tx-fade.is-visible {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

@media screen and (min-width: 600px) {
	.ad-tx-fade.ad-pc-only {
		opacity: 1;
		transform: none;
		filter: none;
		transition: none;
	}
}
