@charset "utf-8";

:root {
	/* base */
	--cts-gutter: clamp(20px, -2.212rem + 8.91vw, 65px);/*375-768*/
	--cts-width: 1500px;

	/* font */
	/* --dp-font-jp: "yu-gothic-pr6n", sans-serif; */
	--dp-font-jp: "Noto Sans JP", sans-serif;

	--dp-h2-size: clamp(39px,calc(1.023rem + 3.97vw),60px);
	--dp-h3-size: clamp(23px,calc(.955rem + .73vw),30px);
	--dp-h4-size: clamp(17px,calc(.886rem + .48vw),20px);
	--dp-p-l-size: clamp(13px, 0.806rem + 0.3vw, 15px);/* 本文 Large */
	--dp-p-note-size: clamp(10px,calc(.597rem + .12vw),11px);/* 本文 Notes */
	--dp-price-s-size: clamp(23px,calc(.886rem + .48vw),24px);/* 価格 Small */
	--dp-price-tax-s-size: clamp(18px,calc(.693rem + .24vw),18px);/* 円・税 Small */

	--cts-font-size: clamp(12px, 0.636rem + 0.48vw, 16px);
	--cts-font-ls: .025em;/*letter-spacing*/

	/* color */
	--color-white-1: #FFFFFF;
    --color-black-1: #515151;
    --color-black-2: #000000;
    --color-blue-1: #0095EB;
    --color-yellow-1: #FFDF36;
}



/* 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;
	font-size: var(--cts-font-size);
	font-family: var(--dp-font-jp);
	font-weight: 400;
    letter-spacing: 0.05em;
	color: var(--cts-color1);
	overflow: hidden;
}
.contents__wrap img {
	max-width: 100%;
	vertical-align: bottom;
}
.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);
	min-height: 43px;
	background: var(--color-purple2);
	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__inner::after {
	content: "";
	position: absolute;
	top: calc(50% - 5px);
    right: 24px;
    width: 9px;
    height: 9px;
    border-right: 1px solid;
    border-bottom: 1px solid;
	border-color: #fff;
	transform: rotate(-45deg);
}
.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%;
	}
}
@keyframes link-shine {
    0% {
        left: -168%;
    }
    8% {
        left: -18%;
    }
    16% {
        left: 168%;
    }
    100% {
        left: 168%;
    }
}
.link__inner::before {
    animation: link-shine 5s ease-in-out infinite;
}
.link__inner.shine::before {
    animation: link-shine 5s ease-in-out infinite;
}

.link--over::before {
    animation: link-over ease-out .4s both;
}

.link--out::before {
    animation: link-out ease-in .4s both;
}
/* コンテンツ
____________________*/
::selection {
	color: var(--color-white-1);
	background-color:var(--color-black-1);
}
.contents__wrap .link__inner {
	color: var(--cts-bg);
	font-size: clamp(15px, 0.545rem + 1.61vw, 17px);
	font-weight: 700;
	background: var(--cts-color);
	border-radius: 50px;
	padding-block:0;
    padding-inline: 0;
	max-width: 255px;
}
.contents__wrap .link__inner span {
	position: relative;
	padding-block: clamp(5px,0.236rem + 1.38vw,20px);
	width: 100%;
	height: 100%;
}

/* mv
____________________*/
.contents--mv {
	width: 100%;
	padding: 0;
	position: relative;
	z-index: 1;
	margin-top: 0;
	margin-bottom: 0;
    transition: 300ms;
}
.contents--mv::after {
    position: absolute;
    top: -200%;
    left: -150%;
    content: "";
    height: 500%;
    width: 300px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0),
        rgba(255,255,255,0.6) 40%,
        rgba(255,255,255,0),
        rgba(255,255,255,0.6),
        rgba(255,255,255,0)
    );
    transform: rotate(45deg);
    animation: 5s shine infinite linear;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 150%;
    }
    80% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}
.contents--mv img {
    width: 100%;
}
/* cp-end
____________________*/
.cp-end {
    position: relative;
    width: 100%;
    padding: 10px 0;
    background: #fff;
}

.cp-end-txt {
    white-space: nowrap;
    font-size: 1.2em;
    font-weight: 700;
    color: #e43344;
    text-align: center;
}
/* lineup
____________________*/
.contents--lineup {
    background: url(../../gamepc/img/gamer_census2024/bg-pc.webp) no-repeat center center/cover fixed;
    margin: 0;
    padding-top: 150px;
    padding-bottom: 150px;
    position: relative;
    z-index: 1;
}
.contents--lineup::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: #ACACAC;
    background: linear-gradient(0deg,rgba(172, 172, 172, 1) 0%, rgba(38, 38, 38, 1) 100%);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.lineup {
    position: relative;
    z-index: 3;
}
.ttl-set {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.crown {
    background: url(../../gamepc/img/gamer_census2024/icon-crown.webp) no-repeat center top/contain;
    width: 138.91px;
    height: 66.19px;
}
.ttl-h2 {
    color: var(--color-white-1);
    font-size: clamp(20px, -0.545rem + 3.61vw, 43px);
	font-weight: 700;
    line-height: 1.4;
    text-align: center;
    margin-top: 20px;
}
.sales-period {
    color: var(--color-white-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}
.sales-period dt {
    font-size: clamp(15px, -0.545rem + 3.61vw, 20px);
	font-weight: 700;
    line-height: 1.4;
}
.sales-period dd {
    font-size: clamp(16px, -0.545rem + 3.61vw, 22px);
	font-weight: 700;
    line-height: 1.7;
    text-align: center;
    margin-top: 10px;
}
.sales-period dd .font-70 {
    font-size: 70%;
}
.model-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 55px;
    margin: 75px auto 0;
}
.model-block {
    width: 100%;
    max-width: 420px;
    background: var(--color-white-1);
    border-radius: 50px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}
.model-block .model-link {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    padding: 30px 55px 45px;
    box-sizing: border-box;
}
.model-image {
    width: 100%;
    max-width: 286px;
    margin: auto;
}
.model-name {
    color: var(--color-black-1);
    font-size: clamp(12px, -0.545rem + 3.61vw, 18px);
    line-height: 1.7;
    margin-top: 5px;
}
.model-spec {
    color: var(--color-black-1);
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 40px auto 0;
}
.mode-spec-block {
    display: flex;
    gap: 1em;
}
.model-spec dt {
    font-size: clamp(10px, -0.545rem + 3.61vw, 12px);
    font-weight: 500;
    width: 90px;
}
.model-spec dd {
    font-size: clamp(11px, -0.545rem + 3.61vw, 14px);
    font-weight: 500;
    word-break: break-word;
}
.model-price-block {
    color: #515151;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3px;
    margin-top: 15px;
}
.model-price {
    font-size: clamp(18px, -0.545rem + 3.61vw, 26px);
    font-weight: 700;
    line-height: 1;
}
.tax {
    font-size: clamp(11px, -0.545rem + 3.61vw, 16px);
    font-weight: 700;
    line-height: 1;
}
.link-block {
    width: 100%;
    max-width: 280px;
    margin: 15px auto 0;
}
.link-btn.circle {
    width: 100%;
    box-sizing: border-box;
    padding: 13px;
    background: var(--color-blue-1);
    color: var(--color-white-1);
    font-size: clamp(11px, -0.545rem + 3.61vw, 16px);
    text-align: center;
    overflow: hidden;
    position: relative;
    transition-duration: .4s;
    z-index: 2;
}
.link-btn.circle::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 1px solid var(--color-white-1);
    border-right: 1px solid var(--color-white-1);
    display: block;
    position: absolute;
    right: 15px;
    top: calc(50% - 3.5px);
    transform: rotate(45deg);
}
.link-btn.circle::after {
    background: var(--color-blue-1);
    mix-blend-mode: multiply;
    border-radius: 50%;
    content: "";
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity .5s, transform 0s;
    transition-delay: 0s, .4s;
}
.model-link:hover .link-btn.circle {
    color: #fff;
}
.model-link:hover .link-btn.circle::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .6s ease-in-out;
}
.about-wrap {
    width: 100%;
    max-width: 963px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-yellow-1);
    border-radius: 50px;
    padding: 80px 40px;
    margin: 0 auto;
    box-sizing: border-box;
}
.ttl-about {
    color: var(--color-black-2);
    font-size: clamp(18px, -0.545rem + 3.61vw, 24px);
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
}
.txt-about {
    color: var(--color-black-2);
    font-size: clamp(14px, -0.545rem + 3.61vw, 16px);
    font-weight: 700;
    line-height: 2;
    text-align: center;
    margin-top: 20px;
}
.about-wrap .link-block {
    width: 100%;
    max-width: 320px;
    margin-top: 40px;
}
.about-wrap .link-block .link-btn.circle {
    color: var(--color-black-2);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    width: 100%;
    max-width: inherit;
    height: 100%;
    padding: 16px;
    margin: 0;
    background: var(--color-yellow-1);
    display: block;
    border: 1px solid var(--color-black-2);
}
.about-wrap .link-block .link-btn.circle::before {
    content: "";
    width: 16.5px;
    height: 13.52px;
    background: url(../../gamepc/img/gamer_census2024/icon-window.webp) no-repeat center center/contain;
    border: none;
    top: calc(50% - 7px);
    transform: rotate(0deg);
}
.about-wrap .link-block .link-btn.circle::after {
    background: var(--color-yellow-1);
    mix-blend-mode: multiply;
}
.about-wrap .link-block .link-btn:hover.circle::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .6s ease-in-out;
}
/* other
____________________*/
.contents--other {
    margin: 0;
    padding-top: 100px;
    padding-bottom: 100px;
    background: #f1f1f1;
}
.contents--other  .ttl-h2 {
    color: #484848;
    margin: 0;
    padding: 10px 0;
    box-sizing: border-box;
}
.p-gaming-pc__select-from-shape-list {
    display: flex;
    gap: 30px;
    margin: 75px auto 0;
}
.p-gaming-pc__select-from-shape-list-item {
    flex: 1;
    padding: 30px;
    gap: 30px;
    color: #484848;
    background: #fff;
    position: relative;
    display: flex;
    border-radius: 16px;
    outline: 1px solid rgba(0, 162, 230, 0);
    transition: all 0.3s ease;
    text-decoration: none;
    box-sizing: border-box;
}
.p-gaming-pc__select-from-shape-list-item:hover {
    outline: 1px solid rgba(0, 162, 230, 0.5);
    filter: drop-shadow(5px 5px 5px rgba(0, 162, 230, 0.1));
}
.p-gaming-pc__select-from-shape-list-item-image {
    max-width: 30%;
    height: 100%;
    display: flex;
    aspect-ratio: 1 / 1;
    align-items: center;
    justify-content: center;
}
.p-gaming-pc__select-from-shape-list-item-image img {
    filter: drop-shadow(-5px 5px 8px rgba(34, 41, 72, 0.26)) drop-shadow(-25px 25px 20px rgba(34, 41, 72, 0.15));
    max-width: 100%;
}
.p-gaming-pc__select-from-shape-list-item-text {
    align-self: center;
}
.p-gaming-pc__select-from-shape-list-item-subtitle {
    margin-bottom: 1em;
    font-size: 22px;
    font-weight: 700;
}
.p-gaming-pc__select-from-shape-list-item-subtitle small {
    margin-bottom: 1em;
    display: inline-block;
    font-size: 12px;
    font-family: Roboto, Sans-Serif;
}
.p-gaming-pc__select-from-shape-list-item p {
    line-height: 1.75;
    font-size: 15px;
    padding-bottom: 2em;
}
.p-gaming-pc__select-from-shape-list-item-more {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 14px;
}
.p-gaming-pc__select-from-shape-list-item-more span {
    display: block;
    position: relative;
    padding-right: 2em;
}
.p-gaming-pc__select-from-shape-list-item-more span::before {
    display: block;
    content: "";
    background: #484848;
    width: 1.5em;
    height: 1.5em;
    border-radius: 1.5em;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.p-gaming-pc__select-from-shape-list-item-more span::after {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border: 2px solid #fff;
    border-left: none;
    border-top: none;
    display: block;
    position: absolute;
    right: calc(0.5em + 1px);
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
.other .link-block {
    width: 100%;
    max-width: 320px;
    margin-top: 40px;
}
.other .link-block .link-btn.circle {
    color: var(--color-white-1);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    width: 100%;
    max-width: inherit;
    height: 100%;
    padding: 16px;
    margin: 0;
    background: var(--color-blue-1);
    display: block;
}
.other .link-block .link-btn.circle::after {
    background: var(--color-blue-1);
    mix-blend-mode: multiply;
}
.other .link-block .link-btn:hover.circle::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .6s ease-in-out;
}
@media (max-width: 768px) {/*375-768*/
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
    /* コンテンツ
    ____________________*/
    .contents__wrap .contents {
        margin-top: 0;
        margin-bottom: 0;
    }
    /* lineup
    ____________________*/
    .contents--lineup {
        background: url(../../gamepc/img/gamer_census2024/bg-sp.webp) no-repeat center center / cover fixed;
        padding-top: 125px;
        padding-bottom: 125px;
    }
    .crown {
        width: 79.56px;
        height: 37.91px;
    }
    .ttl-h2 {
        margin-top: 15px;
    }
    .sales-period {
        margin-top: 30px;
    }
    .model-wrap {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-top: 50px;
    }
    .model-block {
        max-width: 300px;
        border-radius: 40px;
    }
    .model-block .model-link {
        padding: 30px 30px 45px;
    }
    .model-image {
        max-width: 200px;
    }
    .model-spec {
        margin-top: 20px;
    }
    .model-spec dt {
        width: 75px;
    }
    .about-wrap {
        max-width: 300px;
        border-radius: 40px;
        padding: 60px 20px;
    }
    /* other
    ____________________*/
    .p-gaming-pc__select-from-shape-list {
        gap: 4vw;
        flex-direction: column;
        margin: 35px auto 0;
    }
    .p-gaming-pc__select-from-shape-list-item {
        padding: 3vw;
        width: 100%;
        display: flex;
        grid-template-rows: auto 1fr;
        gap: 4vw;
        align-items: center;
    }
    .p-gaming-pc__select-from-shape-list-item-image {
        max-width: 100%;
        width: 250px;
    }
    .p-gaming-pc__select-from-shape-list-item:nth-of-type(1) .p-gaming-pc__select-from-shape-list-item-image img {
        width: 90%;
        height: auto;
    }
    .p-gaming-pc__select-from-shape-list-item-text {
        display: grid;
        height: 100%;
        grid-template-rows: auto 1fr;
    }
    .p-gaming-pc__select-from-shape-list-item-subtitle {
        margin-bottom: 0.3em;
        font-size: 4.27vw;
        text-align: left;
    }
    .p-gaming-pc__select-from-shape-list-item-subtitle small {
        font-size: 2.67vw;
        margin-bottom: 0.25em;
    }
    .p-gaming-pc__select-from-shape-list-item p {
        font-size: 2.93vw;
        padding-bottom: 4.67vw;
    }
    .p-gaming-pc__select-from-shape-list-item-more {
        right: 3vw;
        bottom: 3vw;
        font-size: 2.67vw;
    }
}
@media (max-width: 479px) {
	.contents--mv .pc {
		display: none;
	}
	.contents--mv .sp {
		display: block;
	}
}

/*　アニメーション
____________________*/
.fade-in { opacity: 0; transition: opacity 0.4s ease, transform 0.6s 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.3); }         /* ズームアウト：最初は大きく表示される */
.fade-in.is-visible { opacity: 1; transform: translate(0, 0); } /* 元の位置に戻る */