@charset "utf-8";

:root {
	/* base */
	--cts-gutter: clamp(25px, -1.412rem + 8.91vw, 65px);/*375-768*/
	--cts-width: 1330px;

	/* font */
	--dp-font-jp: "Noto Sans JP", sans-serif;
	/* Noto Sans JP
	Thin 100
	Light 300
	Regular 400
	Medium 500
	Bold 700
	*/

	--cts-font: "Zen Maru Gothic", serif;
	/* 
	light 300
	regular 400
	medium 500
	bold 700
	black 900
	*/

	--cts-font-02: "dnp-shuei-mgothic-std", sans-serif;
	/* 
	normal 400
	bold 600
	*/


	--dp-h1-size: clamp(24px,calc(1.159rem + 1.45vw),36px);
	--dp-h2-size: clamp(20px,calc(1.023rem + .97vw),28px);
	--dp-h3-size: clamp(18px,calc(.955rem + .73vw),24px);
	--dp-h4-size: clamp(16px,calc(.886rem + .48vw),20px);
	--dp-p-l-size: clamp(14px, 0.806rem + 0.3vw, 16px);/* 本文 Large */
	--dp-p-note-size: clamp(10px,calc(.597rem + .12vw),11px);/* 本文 Notes */
	--dp-price-s-size: clamp(16px,calc(.886rem + .48vw),20px);/* 価格 Small */
	--dp-price-tax-s-size: clamp(12px,calc(.693rem + .24vw),14px);/* 円・税 Small */

	--cts-font-size: clamp(12px, 0.636rem + 0.48vw, 16px);
	--cts-font-ls: .025em;/*letter-spacing*/

	/* color */
	--cts-white-1: #FFFFFF;
	--cts-white-2: #F5F4F8;
	--cts-white-3: #F7F1FD;
	--cts-purple-1: #3A2F3A;
	--cts-purple-2: #654EA3;
	--cts-purple-3: #895C85;
	--cts-pink-1: #D898C7;
	--cts-pink-2: #F2E4F5;
	--cts-black-1:#333333;
	--cts-black-2:#000000;
}


/* LP共通汎用
____________________*/
#container a, #container a span {
    color: inherit;
    text-decoration: none;
}
.pagetop {
	display: none;	
}
#pagetop {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 55px;
}
#pagetop a {
	color: #fff;
	background-color: #333;
	border-radius: 5px;
	display: block;
	font-size: 12px;
	line-height: 1.5em;
	padding: 5px 10px;
	text-align: center;
	text-decoration: none;
}
figure {
	margin: 0;
	text-align: center;
}
img {
	image-rendering: -webkit-optimize-contrast;
}
.l-header {
    width: 100%;
    background: #fff;
    position: relative;
}
.c-breadcrumb--gray {
	display: flex;
	align-items: center;
}
.bnr_link_win11_wrap {
    margin: 0 auto;
}
.bnr_link_win11 img {
    transition: opacity 0.3s;
    width: 300px;
}
.bnr_link_win11 img:hover {
	opacity: 0.75;
}
.BreadcrumbList_wrap {
	background: #fff;
	position: relative;
    z-index: 2;
}
.footer-wrap {
    background: #fff;
    position: relative;
    z-index: 2;
}
@media screen and (min-width: 768px), print and (min-width: 768px) {
	.c-breadcrumb__list.u-pc-width,
	.bnr_link_win11_wrap.u-pc-width {
		padding-inline: 30px;
	}
	.bnr_link_win11_wrap.u-pc-width {
		width: auto;
	}
}
@media screen and (max-width: 1000px) {
	.c-breadcrumb--gray {
		display: inherit;
	}
	.bnr_link_win11_wrap {
		width: 100%;
		margin: 10px auto 0;
		padding-block-end: 10px;
	}
	.bnr_link_win11 {
		width: 100%;
		margin-top: 0;
		text-align: center;
	}
}
.contents__wrap {
	width: 100%;
	margin-inline: auto;
	background: var(--cts-white-1);
	font-size: var(--cts-font-size);
	font-family: var(--dp-font-jp);
	color: var(--cts-purple-1);
	overflow: hidden;
}
.contents__wrap img {
	max-width: 100%;
}
.contents {
	margin-top: 120px;
	margin-bottom: 120px;
}
.pc {
	display: block !important;
}
.sp {
	display: none !important;
}
.flash:hover {
	animation-name: hover-flash;
	animation-duration: 1s;
	opacity: .85;
}
@keyframes hover-flash {
	0% {
		opacity: .3;
	}
	100% {
		opacity: .85;
	}
}
.contents__inner {
	width: 100%;
	max-width: var(--cts-width);
	margin-inline: auto;
	padding-inline: var(--cts-gutter);
	box-sizing: border-box;
}
.contents__wrap .link__inner {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-block: clamp(5px,0.236rem + 1.38vw,12px);
	padding-inline: clamp(25px,0.737rem + 2vw,40px);
	margin-top: 10px;
	min-height: 50px;
	background: var(--dp-color);
	font-size: clamp(15px, 0.545rem + 1.61vw, 18px);
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	letter-spacing: var(--cts-font-ls);
	box-sizing: border-box;
	overflow: hidden;
	z-index: 1;
	border-radius: 4px;
	width: 100%;
}
.link__inner::before {
	position: absolute;
	content: "";
	width: 150%;
	height: 100%;
	top: 0;
	left: -168%;
	background: #fff;
	transform: skewX(-18deg);
	opacity: .3;
	z-index: -1;
}

.link--over::before {
	animation: link-over ease-out .4s both;
}
.link--out::before {
	animation: link-out ease-in .4s both;
}
@keyframes link-over {
	0% {
		left: -168%;
	}
	100% {
		left: -18%;
	}
}
@keyframes link-out {
	0% {
		left: -18%;
	}
	100% {
		left: 168%;
	}
}
/* コンテンツ
____________________*/
.contents__wrap {
	padding-block-end: 0;
	position: relative;
	z-index: 0;
}
.contents__wrap .bg {
	position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 6;
    background: url(../../../contents/ads-justpc_w/img/bg-flower.webp) repeat-y 0 0/100% auto;
	pointer-events: none;
}
.contents__wrap .link__inner {
	color: var(--cts-white-1);
	font-size: 15px;
	font-weight: 700;
	background: var(--cts-purple-2);
	border-radius: 10px;
	padding-block:0;
    padding-inline: 0;
	margin-top: 25px;
	max-width: 246px;
}
.link__inner .link_txt {
	position: relative;
	z-index: +1;
	padding-block: clamp(5px,0.236rem + 1.38vw,16px);
    padding-inline: clamp(25px,0.737rem + 2vw,40px);
	width: 100%;
	height: 100%;
}
.link__inner::before {
	background: var(--cts-pink-1);
	opacity: 1;
}
.link__inner::after {
	border-right: 2px solid;
    border-bottom: 2px solid;
	border-color: var(--cts-bg);
}
.link__inner .model-link-arrow {
	width: 35px;
	height: 35px;
	background: var(--color-blue);
	border-radius: 50%;
	position: absolute;
	right: 10px;
	top: 54%;
	transform: translate(0,-50%) rotate(-45deg);
	z-index: 2;
}
.link__inner .model-link-arrow .dli-arrow-right {
	display: inline-block;
	vertical-align: middle;
	color: var(--color-white1);
	line-height: 1;
	position: relative;
	width: 1em;
	height: 0.1em;
	background: currentColor;
	position: absolute;
	right: 0;
	top: 49%;
	transform: translate(-50%,-50%);
}
.contents__wrap .dli-arrow-right::before {
	content: '';
	width: 0.75em;
	height: 0.75em;
	border: 0.15em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	transform: rotate(45deg);
	transform-origin: top right;
	position: absolute;
	top: 50%;
	right: -0.1em;
	box-sizing: border-box;
}
.pink {
	color: var(--cts-pink-1);
}
.purple {
	color: var(--cts-purple-2);
}
.ttl_set {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.ttl_h2 {
	color: var(--cts-pink-1);
	font-size: clamp(14px, 0.545rem + 1.61vw, 15px);
	font-family: var(--cts-font);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
}
.ttl_sub {
	font-size: clamp(22px, 0.545rem + 1.61vw, 29px);
	font-family: var(--cts-font-02);
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.05em;
	text-align: center;
	margin-top: 10px;
}
/* mv
____________________*/
.contents--mv {
	width: 100%;
	padding: 0;
	position: relative;
	z-index: 2;
	margin-top: 0;
	margin-bottom: 0;
	background: var(--cts-white-1);
}
.contents--mv h1 {
	width: 100%;
	padding: 0;
}
.contents--mv h1 img {
	width: 100%;
	position: relative;
	vertical-align: bottom;
}

.contents--mv .kv-note {
    position: absolute;
    top: 48%;
    left: 20%;
    width: 26%;
    transform: translate(-50%, -50%);
}
.contents--mv .kv-desk {
    position: absolute;
    top: 52%;
    right: 3%;
    width: 18%;
    transform: translate(-50%, -50%);
}
.contents--mv .kv-note img,
.contents--mv .kv-desk img {
	width: 100%;
	height: auto;
}
@keyframes float-updown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px); /* 上に20px移動 */
  }
}

@keyframes float-downup {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px); /* 下に20px移動 */
  }
}

.kv-note img {
  animation: float-updown 3s ease-in-out infinite;
}

.kv-desk img {
  animation: float-downup 3s ease-in-out infinite;
}
/* intro
____________________*/
.contents--intro {
	background: url(../../../contents/ads-justpc_w/img/bg-texture.webp) no-repeat center bottom/contain;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 100px;
	padding-bottom: 200px;
	position: relative;
	z-index: 1;
}
@keyframes rotateClockwise {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes rotateCounterClockwise {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg); /* 反時計回り */
	}
}
.contents--intro .ring-1,
.contents--intro .ring-2 {
	width: 463px;
	height: 463px;
	position: absolute;
	z-index: -1;
}
.contents--intro .ring-1 {
	top: -110px;
	left: -103px;
	animation: rotateCounterClockwise 30s linear infinite; /* 5秒で1回転し、無限ループ */
}
.contents--intro .ring-2 {
	bottom: 20px;
	right: -43px;
	animation: rotateClockwise 30s linear infinite; /* 5秒で1回転し、無限ループ */
}
.intro {
	position: relative;
	z-index: 1;
}
.intro-ttl {
	width: 100%;
	max-width: 639px;
	margin: 0 auto;
}
.intro-txt {
	font-family: var(--cts-font);
	font-size: clamp(17px, 0.545rem + 1.61vw, 21px);
	font-weight: 700;
	line-height: 2.2;
	letter-spacing: 0.1em;
	text-align: center;
	margin-top: 60px;
}
.intro-txt + .intro-txt {
	margin-top: 0;
}
.intro-txt + .intro-txt + .intro-txt  {
	margin-top: 20px;
}
.anchor-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 53px;
	margin-top: 80px;
}
.anchor-list-item {
	width: 100%;
	height: 100%;
	max-width: 365px;
	max-height: 85px;
	border: 1px solid var(--cts-purple-2);
	border-radius: 10px;
	position: relative;
}
.anchor-list-item .anchor-link {
	color: var(--cts-purple-2);
	font-family: var(--cts-font);
	font-size: clamp(15px, 0.545rem + 1.61vw, 18px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	padding: 33px 0px;
	transition: all .3s;
}
.anchor-list-item .anchor-link:after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 9px;
	backdrop-filter: blur(5px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: all .3s;
}
.anchor-list-item .anchor-link .arrow {
	display: inline-block;
	width: 14px;
	height: 2px;
	margin: 0;
	border-radius: 9999px;
	background-color: var(--cts-purple-2);
	transform: rotate(-45deg);
	position: absolute;
	right: 30px;
}
.arrow::before,
.arrow::after {
	content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: -1px;
    width: 12px;
    height: 2px;
    border-radius: 9999px;
    background-color: var(--cts-purple-2);
    transform-origin: calc(100% - 1px) 50%;
}
.arrow::before {
	transform: rotate(45deg);
}
.arrow::after {
	transform: rotate(-45deg);
}
.anchor-list-item .anchor-link:hover:after {
	background: #D898C7;
	border-radius: 9px;
	transition: all .3s;
}
/* pickup
____________________*/
.contents--pickup {
	padding-top: 150px;
	padding-bottom: 300px;
	margin-top: -70px;
	margin-bottom: 0;
	background: var(--cts-white-2);
	border-radius: 100px 100px 0 0;
	position: relative;
	z-index: 1;
}
.pickup .inner_flex {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
}
.pickup-image {
	width: 100%;
	max-width: 600px;
}
.pickup-image img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center center;
}
.pickup .ttl_set {
	align-items: flex-start;
}
.pickup .ttl_h2 {
	text-align: left;
}
.pickup .ttl_sub {
	text-align: left;
}
.pickup-txt {
	font-size: clamp(14px, 0.545rem + 1.61vw, 16px);
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.1em;
	margin-top: 40px;
}
/* column
____________________*/
.contents--column {
	margin-top: -90px;
	margin-bottom: 0;
	padding-top: 150px;
	padding-bottom: 260px;
	border-radius: 100px 100px 0 0;
	background: var(--cts-pink-2);
	position: relative;
	z-index: +1;
}
.column {
	position: relative;
	z-index: 1;
}
.column .blowing-wrap {
	width: 100%;
	max-width: 995px;
    position: absolute;
	top: -160px;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: +1;
    display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
    background: var(--cts-white-1);
    border-radius: 20px;
    padding: 16px;
	box-sizing: border-box;
}
.column .blowing-wrap::after {
	content: '';
    position: absolute;
    bottom: -27px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cts-white-1);
    display: inline-block;
    width: 36px;
    height: 28px;
    clip-path: polygon(0 0, 90% 0%, 0% 90%);
}
.search-icon {
	width: 132px;
}
.search-txt {
	font-size: clamp(14px, 0.245rem + 1.61vw, 17px);
	font-family: var(--cts-font-02);
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.search-txt + .search-txt {
	margin-top: 10px;
}
.tb-merit {
	margin-top: 50px;
}
.tb-merit tr {
    border-bottom: 1px solid var(--cts-pink-1);
}
.tb-merit thead tr td:nth-of-type(1) {
	display: none;
}
.tb-merit tr td:nth-of-type(1) {
	width: 130px;
	vertical-align: middle;
}
.tb-merit-ttl-block {
	width: 50%;
	text-align: center;
	padding-block: 15px;
	position: relative;
}
.tb-merit-ttl-block:nth-of-type(1)::after {
    content: "";
    width: 1px;
    height: 60%;
    background: var(--cts-pink-1);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    z-index: 1;
}
.tb-merit-ttl {
	color: var(--cts-black-1);
	font-size: 16px;
	font-family: var(--cts-font-02);
	font-weight: 500;
	line-height: 1;
	text-align: center;
}
.tb-merit-flex {
	display: flex;
}
.ac-wrap {
	display: flex;
}
.ac-item {
    padding-block: 30px;
}
.ac-block-1 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
	cursor: pointer;
}
.ac-icon-wrap {
	width: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex: none;
}
.ac-icon {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
	transition: transform 0.3s ease;
}
.ac-icon::before,
.ac-icon::after {
	content: '';
	position: absolute;
	background-color: var(--cts-pink-1);
	transition: transform 0.3s ease;
}
.ac-icon::before {
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	transform: translateY(-50%);
}
.ac-icon::after {
	left: 50%;
	top: 0;
	width: 2px;
	height: 100%;
	transform: translateX(-50%);
}
.ac-icon.open {
	transform: rotate(180deg);
}
.ac-icon.open::after {
	transform: translateX(-50%) scaleY(0);
}
.ac-block-2 {
	display: flex;
	gap: 60px;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.4s ease;
}
.ac-block-2.open {
	max-height: 500px; /* 内容に応じて調整 */
}
.ac-block-inner {
	width: 50%;
}
.ac-block-2 .ac-block-inner {
	padding-left: 15px;
}
.ac-category-ttl-block {
	color: var(--cts-pink-1);
	font-size: 16px;
	font-family: var(--cts-font-02);
	font-weight: 500;
    text-align: center;
}
.ac-item {
	padding-block: 20px;
}
.ac-ttl {
	color: var(--cts-black-1);
	font-size: 16px;
	font-family: var(--cts-font-02);
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.5;
	margin-left: 1em;
    text-indent: -1em;
	position: relative;
}
.ac-ttl::before {
	content: "●";
	color: #D898C7;
	font-size: 12px;
	margin-right: 5px;
}
.ac-txt {
	color: var(--cts-purple-3);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.8;
	padding-top: 10px;
}
.column-useful-wrap {
	background: var(--cts-white-1);
	border-radius: 20px;
	margin-top: 75px;
	padding: 75px 130px 65px;
}
/* 共通スタイル */
.swiper-container.useful {
	width: 100%;
	overflow: hidden;
	margin-top: 50px;
}
.swiper-container.useful .swiper-wrapper {
		flex-direction: column;
		gap: 30px;
}
.useful .swiper-slide {
	box-sizing: border-box;
	text-align: center;
}
.useful .swiper-button-prev, .useful .swiper-rtl .swiper-button-next {
	display: none;
}
.useful .swiper-pagination {
	display: none;
}
.useful-item {
	display: flex;
	align-items: center;
	gap: 30px;
}
.useful-icon {
	width: 131px;
	flex: none;
}
.useful-txt-block {
	text-align: left;
}
.useful-ttl {
	font-size: 18px;
	font-family: var(--cts-font-02);
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.8;
}
.useful-txt {
	color: var(--cts-purple-3);
	font-size: 15px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.07em;
	margin-top: 10px;
}
.useful .useful-button-wrap {
	display: none;
}
/* lineup
____________________*/
.contents--lineup {
	padding-top: 130px;
	padding-bottom: 200px;
	margin-top: -70px;
	margin-bottom: 0;
	background: var(--cts-white-1);
	border-radius: 100px 100px 0 0;
	position: relative;
	z-index: 2;
}
.lineup-category-wrap {
	background: var(--cts-white-3);
	border-radius: 20px;
	padding: 60px 50px 50px;
	margin-top: 50px;
}
.lineup-category-ttl-set {
	text-align: center;
	width: 100%;
	max-width: fit-content;
	margin-inline: auto;
}
.lineup-category-ttl {
	font-family: var(--cts-font-02);
	font-size: clamp(19px, 0.545rem + 1.61vw, 24px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.1em;
	display: inline;
	background:linear-gradient(transparent 60%, var(--cts-white-1) 60%);
	padding: 0 1px 0px;
}
.lineup .lineup--list {
	width: 100%;
	margin: 35px auto 0;
	display: flex;
	justify-content: center;
	align-items: stretch;
    flex-wrap: wrap;
	gap: 30px 30px;
}
.lineup .lineup--list .lineup--list_item {
	width: 100%;
	max-width: 346px;
	background: var(--cts-white-1);
	border: 1px solid var(--cts-color7);
	border-radius: 10px;
	padding: 35px 20px;
	box-sizing: border-box;
}
.lineup .lineup--list .lineup--list_item .model_catch {
	color: var(--cts-purple-2);
	font-family: var(--cts-font);
	font-size: 17px;
	font-family: var(--cts-font-02);
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.5;
	text-align: center;
}
.lineup .lineup--list .lineup--list_item .model_image {
	width: 270px;
	height: 270px;
	margin: 20px auto 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url(../../gamepc/img/fortnite-oyakotaikai/bg-model.webp) no-repeat center center/contain;
}
.lineup .lineup--list .lineup--list_item .model_image figure {
	max-width: 270px;
}
.lineup .lineup--list .lineup--list_item .model__detail {
	width: 100%;
}
.model__name {
	width: 100%;
	color: var(--cts-black-2);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.5;
	text-align: center;
	margin-top: 10px;
}
.model__txt {
	margin-top: 10px;
	text-align: center;
}
.model__spec-list {
	color: var(--cts-purple-3);
	font-size: clamp(13px, 0.245rem + 1.61vw, 14px);
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
}
.model__spec-list .model__spec-item .spec__data {
	display: inline-block;
}
.model__price_block {
	width: 100%;
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.model__price {
	color: var(--cts-black-2);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.1em;
}
.model__price .model__tax {
	font-size: 18px;
}
.model__price_block .link__inner::after {
	width: 25px;
	height: 25px;
	border: none;
	background: url(../../gamepc/img/fortnite-oyakotaikai/arrow.webp) no-repeat center center/cover;
	top: calc(50% - 11px);
	right: 14px;
	transform: rotate(0);
}
.model-note {
	color: var(--cts-purple-3);
	font-size: clamp(13px, 0.245rem + 1.61vw, 14px);
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.05em;
	text-align: center;
	margin-top: 20px;
}
.lineup-note {
	color: var(--cts-purple-3);
	font-size: clamp(14px, 0.245rem + 1.61vw, 16px);
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-align: center;
	margin-top: 30px;
}
.lineup-note2 {
	color: var(--cts-purple-3);
	font-size: clamp(13px, 0.245rem + 1.61vw, 14px);
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.05em;
	text-align: center;
	margin-top: 1em;
}
/* service
____________________*/
.contents--service {
	padding-top: 120px;
	padding-bottom: 150px;
	margin-top: 0;
	margin-bottom: 0;
	background: var(--cts-white-2);
	border-radius: 100px 100px 0 0;
}
.service-txt {
	color: var(--cts-black-1);
	font-size: clamp(14px, 0.245rem + 1.61vw, 16px);
	font-weight: 500;
	text-align: center;
	line-height: 2;
	letter-spacing: 0.1em;
	margin-top: 25px;
}
.service-block1-wrap {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 55px;
}
.service-block1 {
	width: 100%;
	max-width: 585px;
	background: var(--cts-white-1);
	border-radius: 20px;
	padding: 30px 35px;
	box-sizing: border-box;
}
.service-block1-ttl {
	color: var(--cts-black-1);
	font-size: 18px;
	font-family: var(--cts-font-02);
	font-weight: 600;
	letter-spacing: 0.05em;
}
.service-block1-txt {
	color: var(--cts-purple-3);
	font-size: clamp(14px, 0.245rem + 1.61vw, 15px);
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.07em;
	margin-top: 10px;
}
.service-block1 .link__inner {
	color: var(--cts-black-2);
	font-size: clamp(15px, 0.245rem + 1.61vw, 16px);
	font-family: var(--cts-font);
	text-align: center;
    width: 100%;
    max-width: inherit;
	background: var(--cts-white-2);
}
.other-service-ttl {
	color: var(--cts-black-1);
	font-size: clamp(19px, 0.245rem + 1.61vw, 24px);
	font-family: var(--cts-font-02);
	margin-top: 60px;
}
/* top-anchor
____________________*/
.contents--top-anchor {
	position: fixed !important;
	margin: 0;
	padding: 0;
	bottom: max(2.5vw,30px);
	right: max(2.5vw,30px);
	z-index: 10;
	transition: all .3s;
	opacity: 0;
}
.contents--top-anchor.is-active-anc {
	opacity: 1;
	visibility: visible;
}
.top-anchor {
	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(72px, 1.978rem + 5.56vw, 150px);
    height: clamp(72px, 1.978rem + 5.56vw, 150px);
    top: 0;
    background: var(--color-blue);
    border-radius: 50%;
    transition: all .3s;
}

.top-anchor:hover {
	top: -10px;
}
@media (max-width: 1300px) {/*375-1300*/
/* intro
____________________*/
.contents--intro .ring-1, .contents--intro .ring-2 {
	display: none;
}
}
@media (max-width: 767px) {/*375-768*/
.pc {
	display: none !important;
}
.sp {
	display: block !important;
}
.l-header {
	z-index: 2;
}
#maincontent {
	z-index: 1;
	position: relative;
}
/* コンテンツ
____________________*/
/* .contents {
	margin-top: 50px;
	margin-bottom: 50px;
} */
.contents__wrap .bg {
    background: url(../../gamepc/img/fortnite-oyakotaikai/bg-cloud-sp.webp) repeat-y 0 0/100% auto;
}
.section-ttl_wrap .section-ttl_eng {
	gap: 20px;
}
.section-ttl_wrap .section-ttl_eng::before {
	width: 18.15px;
	height: 23.84px;
}
.section-ttl_wrap .section-ttl_eng::after {
	width: 23.32px;
	height: 19.35px;
}
.contents__wrap .bg {
	display: none;
}
.ttl_sub {
	line-height: 1.6;
}
/* mv
____________________*/
.contents--mv {
	margin-top: 0px;
	margin-bottom: 0;
}
.contents--mv .kv-note {
	top: 35%;
	left: initial;
	right: -12%;
	width: 40%;
}
.contents--mv .kv-desk {
	top: 38%;
	left: 30%;
	right: initial;
	width: 34%;
}
@keyframes float-updown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* 上に10px移動 */
  }
}

@keyframes float-downup {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px); /* 下に10px移動 */
  }
}
/* intro
____________________*/
.contents--intro {
    padding-top: 20px;
	padding-bottom: 150px;
	background: url(../../../contents/ads-justpc_w/img/bg-texture.webp) no-repeat 0 95% / 220%;
}
.intro-ttl {
	display: none;
}
.intro-txt {
	margin-top: 0;
	letter-spacing: 0.05em;
	line-height: 2;
}
.intro-txt + .intro-txt {
	margin-top: 1em;
}
.intro-txt + .intro-txt + .intro-txt  {
	margin-top: 20px;
}
.anchor-list {
	flex-direction: column;
	gap: 20px;
	margin-top: 50px;
}
.anchor-list-item .anchor-link {
	padding: 23px 0px
}
/* pickup
____________________*/
.contents--pickup {
	padding-top: 50px;
	padding-bottom: 200px;
	border-radius: 20px 20px 0 0;
}
.pickup .inner_flex {
	flex-direction: column;
	gap: 20px;
}
.pickup-image {
	max-width: 308px;
	padding-left: 20px;
}
.pickup-txt {
	margin-top: 20px;
	letter-spacing: 0;
}
/* column
____________________*/
.contents--column {
	padding-top: 120px;
	padding-bottom: 70px;
	margin-top: -20px;
	border-radius: 20px 20px 0 0;
}
.column .blowing-wrap {
	max-width: 325px;
	padding: 40px 16px 16px;
	flex-direction: column;
	top: -150px;
}
.column .blowing-wrap .search-icon {
	width: 75px;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,-50%);
}
.search-txt {
	text-align: center;
}
.tb-merit {
	margin-top: 30px;
}
.tb-merit tr:nth-of-type(1) {
	border-top: 1px solid var(--cts-pink-1);
    border-bottom: 1px solid var(--cts-pink-1);
}
.tb-merit-ttl {
	padding-block: 10px;
	background: var(--cts-white-1);
}
.tb-merit tr td:nth-of-type(1) {
	width: 100%;
}
.ac-block-inner {
	width: 100%;
}
.ac-icon-wrap {
	width: 50px;
}
.ac-icon {
	width: 14px;
	height: 14px;
}
.swiper-container.useful {
	margin-top: 30px;
}
.swiper-container.useful .swiper-wrapper {
	flex-direction: row;
	gap: 0;
	position: relative;
}
.useful .useful-button-wrap {
        position: relative;
		width: fit-content;
        display: flex;
		align-items: center;
        justify-content: space-between;
		margin: 10px auto 0;
		gap: 40px;
}
.useful .useful-button-next,
.useful .swiper-rtl .useful-button-prev {
	display: block;
	width: 15px;
    height: 15px;
    position: relative;
}
.useful .useful-button-prev,
.useful .swiper-rtl .useful-button-next {
	display: block;
	width: 15px;
    height: 15px;
    position: relative;
}
.useful .useful-button-next .arrow,
.useful .useful-button-prev .arrow {
    display: inline-block;
    width: 14px;
    height: 2px;
    margin: 0;
    border-radius: 9999px;
    background-color: var(--cts-purple-2);
	position: absolute;
	top: 50%;
}
.useful .useful-button-prev .arrow {
	transform: rotate(180deg);
}
.useful-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}
.useful-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--cts-pink-2);
	opacity: 1;
	margin-inline: 6px !important;
}
.useful-pagination .swiper-pagination-bullet-active {
	background: var(--cts-purple-2);
	opacity: 1;
}
.column-useful-wrap {
	margin-top: 70px;
	padding: 35px 40px 35px;
}
.useful-item {
	flex-direction: column;
	gap: 15px;
}
.useful .swiper-slide {
    width: 100% !important;
}
.useful-icon {
	width: 72px;
}
.useful .useful-ttl {
	text-align: center;
}
/* lineup
____________________*/
.contents--lineup {
	padding-top: 50px;
	padding-bottom: 50px;
	margin-top: -20px;
	border-radius: 20px 20px 0 0;
}
.lineup-category-wrap {
	padding: 30px 15px;
	margin-top: 30px;
}
.lineup-category-ttl {
	line-height: 1.7;
	letter-spacing: 0.05em;
}
.lineup .lineup--list {
	margin-top: 25px;
	gap: 20px;
}
.lineup .lineup--list .lineup--list_item {
	padding: 24px 13px;
}
.lineup .lineup--list .lineup--list_item .model_image {
	width: 225px;
	height: 225px;
}
/* service
____________________*/
.contents--service {
	padding-top: 50px;
	border-radius: 20px 20px 0 0;
}
.service-block1-wrap {
	flex-direction: column;
	margin-top: 40px;
}
.service-block1 {
	padding: 30px 20px;
}
.service-block1-ttl {
	text-align: center;
}
.other-service-ttl {
	margin-top: 50px;
}
}
@media (max-width: 479px) {
	.contents--mv .pc {
		display: none;
	}
	.contents--mv .sp {
		display: block;
	}
}

/*　アニメーション
____________________*/
.fade-in { opacity: 0; transition: opacity 0.9s ease, transform 0.9s ease; }
.fade-in-center { transform: translate(0, 0); }      /* 位置変更なし */
.fade-in-top { transform: translateY(-100px); }      /* 上から */
.fade-in-bottom { transform: translateY(100px); }    /* 下から */
.fade-in-right { transform: translateX(100px); }     /* 右から */
.fade-in-left { transform: translateX(-100px); }     /* 左から */
.fade-in-zoom-in { transform: scale(0.2); }          /* ズームイン：最初は小さく表示される */
.fade-in-zoom-out { transform: scale(1.6); }         /* ズームアウト：最初は大きく表示される */
.fade-in.is-visible { opacity: 1; transform: translate(0, 0); } /* 元の位置に戻る */
@media screen and (max-width: 768px) {
.fade-in { opacity: 0; transition: opacity 0.9s ease, transform 0.9s ease; }
.fade-in-center { transform: translate(0, 0); }      /* 位置変更なし */
.fade-in-top { transform: translateY(-50px); }      /* 上から */
.fade-in-bottom { transform: translateY(50px); }    /* 下から */
.fade-in-right { transform: translateX(50px); }     /* 右から */
.fade-in-left { transform: translateX(-50px); }     /* 左から */
.fade-in-zoom-in { transform: scale(0.2); }          /* ズームイン：最初は小さく表示される */
.fade-in-zoom-out { transform: scale(1.2); }         /* ズームアウト：最初は大きく表示される */
.fade-in.is-visible { opacity: 1; transform: translate(0, 0); } /* 元の位置に戻る */
}


@media screen and (min-width: 768px) {
	.p-feature__other-service {
	padding-top: 70px;
	padding-bottom: 48px;
	}
	.p-feature__other-service-list > li {
	width: 270px;
	}
}
.p-feature__other-service-list__wrapper {
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 50%);
	overflow: hidden;
	margin-top: 30px;
}
.p-feature__other-service-list > li {
    width: 208px;
    height: auto;
}
@media screen and (min-width: 768px) {
	.p-feature__other-service {
	padding-top: 70px;
	padding-bottom: 48px;
	}
	.p-feature__other-service-list > li {
	width: 270px;
	height: 100%;
	}
}
.p-feature__other-service-card {
    background: #fff;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    padding: 20px 15px 8px;
    height: 100%;
	min-height: 340px;
    line-height: 1.5;
}
.p-feature__other-service-card__img {
    height: 63px;
    text-align: center;
    margin-bottom: 16px;
}
.p-feature__other-service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.p-feature__other-service-card__heading {
    font-size: 14px;
    font-weight: bold;
    min-height: 2lh;
    text-align: center;
    margin-bottom: 8px;
}
.p-feature__other-service-card__body,
.p-feature__other-service-card__more {
    font-size: 12px;
}
.p-feature__other-service-card__more {
    margin-top: auto;
    margin-bottom: 0;
    text-align: right !important;
}
@media screen and (min-width: 768px) {
	.p-feature__other-service-card {
	padding: 30px 20px 20px;
	}
	.p-feature__other-service-card__img {
	height: 83px;
	}
	.p-feature__other-service-card__heading {
	font-size: 20px;
	margin-bottom: 20px;
	}
	.p-feature__other-service-card__body,
	.p-feature__other-service-card__more {
	font-size: 14px;
	text-align: left;
	}
}
.p-feature__rotation__navigation {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin: 20px auto;
}
.p-feature__rotation__prev,
.p-feature__rotation__next {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #004da1;
    cursor: pointer;
}
.p-feature__rotation__prev:hover,
.p-feature__rotation__next:hover {
    opacity: 0.7;
}
.p-feature__rotation__prev::before,
.p-feature__rotation__next::before {
    content: "";
    width: 30%;
    height: 30%;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotateZ(-135deg);
    margin-left: 6px;
}
.p-feature__rotation__next::before {
    transform: rotateZ(45deg);
    margin-left: 0;
    margin-right: 6px;
}