@charset "utf-8";

:root {
	/* base */
	--cts-gutter: clamp(20px, -1.212rem + 8.91vw, 65px);/*375-768*/
	--cts-width: 1300px;

	/* font */
	--dp-font-jp: "Noto Sans JP", sans-serif;
	/* Noto Sans JP
	Noto Sans JP Thin 100
	Noto Sans JP Light 300
	Noto Sans JP Regular 400
	Noto Sans JP Medium 500
	Noto Sans JP Bold 600
	*/

	--cts-font: "Montserrat", sans-serif;
	/* Weight: 100 – 900 */
	--cts-font-02: 'Outfit', sans-serif;
	/* Outfit
	Outfit Medium 500
	Outfit bold 700
	*/

	--dp-h1-size: clamp(24px,calc(1.159rem + 1.45vw),36px);
	--dp-h2-size: clamp(90px,calc(1.023rem + .97vw),137px);
	--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 */
	--dp-color: #000;
	--dp-color2: #EDEBEA;
	--cts-color: #0A6CEB;
	--cts-color2: #172141;
	--cts-color3: #707070;
	--cts-bg: #292929;
	--cts-bg2: #000000;
	--cts-bg3: #EDEBEA;
	--cts-bg4: #172141;
}


/* 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;
}
.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;
}
@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%;
	background: url(../../gamepc/img/tieclan/bg.webp) center center/100%;
	margin-inline: auto;
	font-size: var(--cts-font-size);
	font-family: var(--dp-font-jp);
	color: #fff;
	overflow: hidden;
}
.contents__wrap img {
	max-width: 100%;
}
.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%;
	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__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%;
	}
}


/* コンテンツ
____________________*/
.contents__wrap {
	padding-block-end: 0;
}
.ttl_wrap {
	position: relative;
	padding-inline: var(--cts-gutter);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 0 80px;
}

.section--ttl {
	max-height: 97px;
	margin: 0 auto;
	position: relative;
}
.section--ttl img {
	width: 100%;
	height: auto;
	max-height: 97px;
}
.section--ttl__kana {
	color: var(--cts-bg3);
	font-size: clamp(18px, 0.445rem + 2.61vw, 29px);
    font-weight: 700;
	line-height: 1;
	letter-spacing: 12px;
	position: relative;
	margin: 20px 0 0;
}
.ttl_wrap .bg_text {
	position: absolute;
    left: -2%;
    top: -108%;
    width: 53%;
    height: auto;
    z-index: -1;
}
.contents__wrap .link__inner {
	font-size: 15px;
	font-weight: 400;
	text-align: center;
	background: linear-gradient(to right, #172141, #000000);
	border-radius: 50px;
	padding-block:0;
    padding-inline: 0;
	margin-top: 10px;
	max-width: 255px;
}
.contents__wrap .link__inner span {
	position: relative;
	padding-block: clamp(5px,0.236rem + 1.38vw,14px);
    padding-inline: clamp(25px,0.737rem + 2vw,40px);
	width: 100%;
	height: 100%;
}
/* mv
____________________*/
.contents--mv {
	width: 100%;
	padding: 0;
	position: relative;
}
.contents--mv img {
	width: 100%;
	padding: 0;
	position: relative;
	vertical-align: bottom;
}
/* campaign
____________________*/
.contents--campaign {
	background: var(--cts-bg);
	position: relative;
	z-index: 1;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 120px;
	padding-bottom: 120px;
}
.contents--campaign .campaign {
	max-width: 1430px;
	padding-inline: var(--cts-gutter);
	position: relative;
	z-index: +2;
}
.campaign .ttl_set {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}
.campaign .ttl_wrap {
	width: 100%;
	max-width: 712px;
	flex: none;
	align-items: flex-start;
	padding-inline: 0;
	margin-bottom: 20px;
}
.campaign .section--ttl {
	width: 100%;
    max-height: inherit;
    margin: 0;
}
.campaign .section--ttl img {
	max-height: inherit;
}
.campaign .section--ttl__kana {
	font-size: clamp(19px, 0.145rem + 2.61vw, 25px);
    font-weight: 700;
	line-height: 1.5;
	letter-spacing: 2px;
}
.chara {
	width: 100%;
	max-width: 340px;
	padding-right: 30px;
}
.cp_contents_warp {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.cp_contents_warp > div {
	width: 100%;
	border-bottom: 1px solid var(--cts-color3);
}
.goods_block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-top: 1px solid var(--cts-color3);
}
.goods_block img {
	width: 100%;
	max-width: 1305px;
}
.entry_block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	padding: 25px;
	box-sizing: border-box;
}
.entry_txt {
	font-size: clamp(19px, 0.145rem + 2.61vw, 23px);
    font-weight: 500;
	text-align: left;
	line-height: 1.6;
	letter-spacing: 1.5px;
}
.blue {
	color: var(--cts-color);
}
.txt_40_29 {
	font-size: clamp(29px, 0.145rem + 2.91vw, 40px);
    font-weight: 700;
}
.txt_35_25 {
	font-size: clamp(25px, 0.145rem + 2.91vw, 35px);
    font-weight: 700;
}
.entry_block_right {
	flex: none;
	width: 100%;
	max-width: 394px;
}
.entry_block_right .link__inner {
	color: #333;
	font-size: clamp(16px, 0.145rem + 2.61vw, 20px);
	font-weight: 700;
	width: 100%;
	max-width: inherit;
	background: var(--cts-bg3);
	min-height: 92px;
}
.entry_block_right .link__inner::before {
	background: var(--cts-color);
}
.entry_block_right .link__inner::after {
	top: calc(50% - 5px);
    right: 30px;
    width: 12px;
    height: 12px;
	border-right: 3px solid;
    border-bottom: 3px solid;
	border-color: var(--cts-color);
}
.date_block {
	padding: 15px;
	box-sizing: border-box;
}
.date_txt {
	letter-spacing: 1px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.txt_1 {
	font-size: clamp(16px, 0.145rem + 2.61vw, 19px);
	font-weight: 500;
	line-height: 1;
}
.txt_2 {
	font-size: clamp(15px, 0.145rem + 2.61vw, 19px);
	font-weight: 500;
	line-height: 1;
}
.arrows {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 0 10px 0 20px;
}
.arrow {
	font-size: 9px;
	line-height: 1;
	opacity: 0; /* 初期状態で非表示 */
	transition: opacity 1s ease, transform 0.5s ease;
	cursor: pointer;
}
.arrow.bounce {
	animation: bounce 1.5s infinite;
}
.arrow.visible {
	opacity: 1;
}
@keyframes bounce {
0%, 100% {
	transform: translatex(0);
}
50% {
	transform: translatex(-10px);
}
}
/* slider */
.contents--campaign .cp__slider {
	position: absolute;
	width: 100%;
	top: 0;
	z-index: +1;
}
.contents--campaign .cp__slider2 {
	position: absolute;
	width: 100%;
	bottom: 0;
	z-index: +1;
}
.contents--campaign .cp__slider .slick-slide,
.contents--campaign .cp__slider2 .slick-slide {
	max-width: 1279px;
}
.contents--campaign .cp__slider img,
.contents--campaign .cp__slider2 img {
    width:100%;
    height:auto;
}
.contents--campaign .cp__slider .slick-slide,
.contents--campaign .cp__slider2 .slick-slide {
    margin:0 60px;
}
/* lineup
____________________*/
.contents--lineup {
	position: relative;
}
.contents__inner.lineup {
	width: 100%;
	padding-block-start: 112px;
	padding-block-end: 100px;
	position: relative;
	z-index: 100;
}

.lineup .lineup--list_wrap {
	width: 100%;
	max-width: 1463px;
	margin: 115px auto;
	padding-inline: var(--cts-gutter);
	display: flex;
	gap: 60px;
	box-sizing: border-box;
}
.section--subttl__block {
	width: 30px;
    flex: none;
	position: relative;
}
.section--subttl__block::after {
	content: "";
	width: 1px;
	height: 100%;
	background: #fff;
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
}
.section--subttl {
	font-family: var(--cts-font);
	font-size: clamp(14px, 0.145rem + 2.61vw, 24px);
    font-weight: 700;
	letter-spacing: 2px;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	background: var(--cts-color);
	padding: 0 0 25px;
}
.lineup .lineup--list {
	width: 100%;
	display: flex;
	justify-content: center;
    flex-wrap: wrap;
	gap: 115px 60px;
}
.lineup .lineup--list .get_product_data {
	width: calc((100% - 60px) / 2);
	background: var(--cts-bg3);
	border: 1px solid var(--cts-bg3);
	padding:0;
	box-sizing: border-box;
}
.model_catch {
	width: 100%;
	text-align: center;
	padding: 18px 10px 18px 180px;
    box-sizing: border-box;
	background: linear-gradient(to right, #172141, #000000);
	position: relative;
	display: flex;
	justify-content: flex-start;
	border-bottom:2px solid #4096FF;
}
.model_catch .icon_member {
	width: 166px;
	height: 166px;
	position: absolute;
	left: 0;
	bottom: 0;
}
.model_catch .icon_member img {
	max-width: 100%;
	height: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.model_catch p {
	display: block;
	color: #fff;
    font-size: clamp(16px, 0.545rem + 1.61vw, 22px);
    font-weight: 700;
    line-height: 1.4;
	text-align: left;
}
.model_catch.laptop {
	justify-content: center;
	padding: 18px 10px;
}
.model_catch.laptop p {
	text-align: left;
}
.lineup .lineup--list .get_product_data .model_image {
	width: 240px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url(../../gamepc/img/tieclan/bg_model.webp) no-repeat center center/100%;
}
.lineup .lineup--list .get_product_data .model__detail {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 20px;
	padding: 40px 35px;
}
.model__txt {
	width: 100%;
	max-width: 260px;
}
.model__name {
	width: 100%;
	color: var(--cts-color2);
	font-size: clamp(22px, 0.945rem + 1.61vw, 25px);
	letter-spacing: 0.5px;
	line-height: 1.4;
	text-align: left;
}
.model__spec-list {
	color: var(--cts-color2);
	font-size: clamp(12px, 0.245rem + 1.61vw, 15px);
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.8px;
	margin-top: 10px;
}
.model__spec-list .model__spec-item .spec__data {
	display: inline-block;
}
.model__price_block {
	width: 100%;
	margin-top: 10px;
	display: flex;
	flex-direction: column;
}
.model__price {
	color: var(--cts-color2);
	font-size: 24px;
	font-weight: 700;
}
.model__price .model__tax {
	font-size: 18px;
}
/* .lineup .lineup--list .get_product_data .model_image figure {
	max-width: 100%;
} */
.lineup .bottom_txt_wrap {
	background: var(--cts-bg) url(../../gamepc/img/tieclan/bg_2.webp) repeat center center/100% fixed;
	padding-top: 25px;
	padding-bottom: 25px;
	padding-inline: var(--cts-gutter);
}
.lineup .bottom_txt_wrap p {
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 6px;
}
/* benefit
____________________*/
.contents--benefit {
	position: relative;
}
.contents__inner.benefit {
	width: 100%;
	padding-block-start: 112px;
	padding-block-end: 0;
	position: relative;
	z-index: 100;
}

.point__wrap {
	padding-inline: var(--cts-gutter);
	position: relative;
}
.point__wrap + .point__wrap {
	margin: 160px 0 0;
}
.point__wrap.point4:before {
	content: "";
	position: absolute;
	bottom: 0px;
	right: 0;
	background: linear-gradient(to bottom,rgba(0,0,0,0),rgba(0,0,0,1));
	width: 100%;
	height: 158px;
	z-index: -1;
}
.point__wrap .point__inner {
	width: 100%;
	max-width: 1050px;
	margin: 0 auto;
	position: relative;
}
.point__wrap.point4 .point__inner {
	padding-bottom: 150px;
}
.point__wrap .point__inner::after {
	content: "";
	width: 100%;
	height: calc(100% - 40px);
	background: var(--cts-bg) url(../../gamepc/img/tieclan/bg_2.webp) 100% fixed;
	position: absolute;
	z-index: -2;
}
.point__wrap.point1 .point__inner::after {
	top: 80px;
    right: -3.8vw;
    width: 3000px;
}
.point__wrap.point2 .point__inner::after,
.point__wrap.point4 .point__inner::after {
	top: 80px;
	right: -100%;
	width: 3000px;
}
.point__wrap.point3 .point__inner::after {
	top: 80px;
	left: -3.8vw;
	width: 3000px;
}
.point__wrap.point2 .ttl__wrap,
.point__wrap.point4 .ttl__wrap {
	text-align: center;
}
.point__wrap .point__subttl {
	color: var(--cts-color);
	font-size: clamp(18px, 0.945rem + 1.61vw, 20px);
	font-weight: 700;
	margin: 30px 0 5px;
	line-height: 1;
}
.point__wrap .point__ttl {
	color: #fff;
	font-size: clamp(25px, 0.945rem + 1.61vw, 30px);
	font-weight: 700;
}
.sample_wrap {
	width: 100%;
	margin: 40px 0 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 46px;
	position: relative;
}
.sample_wrap.wallpaper > figure {
	width: 100%;
	max-width: 500px;
	box-sizing: border-box;
}
.sample_wrap.wallpaper > figure:nth-of-type(1) {
    margin-left: 3px;
    margin-right: 3px;
}
.sample_wrap.sticker {
	max-width: 597px;
	margin-left: auto;
	margin-right: auto;
}
.sample_wrap .color1 {
	border: 1px solid #0ABFFD;
}
.sample_wrap .color2 {
	max-width: 500px;
	border: 1px solid var(--cts-color);
}
.sample_wrap img,
.sample_wrap img {
	vertical-align: bottom;
}
.sample_wrap .triangle {
	background: #ffffff;
	height: calc(tan(60deg) * 17px / 2);
	width: 17px;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	position: absolute;
	top: 50%;
	left: 48.7%;
	transform: rotate(90deg) translate(-50%,-50%);
}
.comment_wrap {
	padding: 30px 0 0;
}
.comment_wrap .comment1 {
	font-size: clamp(19px, 0.645rem + 1.61vw, 23px);
	font-weight: 700;
	line-height: 1.7;
	text-align: center;
	margin-bottom: 15px;
}
.comment_wrap .comment2 {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	text-align: center;
}
.comment_wrap .comment2 a {
	color: #fff;
	text-decoration: underline;
}
/* cfooter
____________________*/
.contents--cfooter {
	position: relative;
	background: var(--cts-bg2);
	z-index: 100;
}
.contents__inner.cfooter {
	width: 100%;
	max-width: 1140px;
	padding-block-start: 112px;
	padding-block-end: 160px;
	padding-inline: var(--cts-gutter);
}
.cfooter_logo {
	width: 82px;
	margin: 0 auto;
}
.cfooter .about {
	width: 100%;
	text-align: center;
	margin: 35px 0 100px;
}
.cfooter .about p {
	font-size: clamp(16px, 0.545rem + 1.61vw, 18px);
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 1.5px;
}
.cfooter .about p + p {
	margin-top: 1em;
}
.cfooter .about .team__sns {
	margin: 35px 0 0;
	display: inline-block;
}
.cfooter .about .team__sns img {
	transition:0.5s all;
}
.cfooter .about .team__sns img:hover {
	transform:scale(1.2,1.2);
}
.member__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px 70px;
}
.member__list > li {
	display: flex;
	flex-direction: column;
	gap: 15px;
} 
.member__list > li figure {
	width: 100%;
	max-width: 200px;
}
.member_name {
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
}
.sns__list {
	display: flex;
	justify-content: center;
	gap: 20px;
}
.sns__list a img {
	transition:0.5s all;
}
.sns__list a:hover img {
	transform:scale(1.2,1.2);
}
@media (max-width: 768px) {/*375-768*/
	.pc {
		display: none !important;
	}
	.contents--mv .pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
	.contents--mv .sp {
		display: block !important;
	}
	.link__inner::after {
		top: calc(50% - 2px);
		right: 14px;
		width: 5px;
		height: 5px;
		border-right: 1px solid;
		border-bottom: 1px solid;
	}
	/* コンテンツ
	____________________*/
	.contents__wrap {
	background: url(../../gamepc/img/tieclan/bg_sp.webp) center center/100%;}
	.ttl_wrap {
		margin: 0 0 40px;
	}
	.section--ttl img {
		max-height: 57px;
	}
	.section--ttl__kana {
		margin: 15px 0 0;
	}
	.ttl_wrap .bg_text {
		width: 94%;
		top: 8%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	/* campaign
	____________________*/
	.contents--campaign {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.slick-track {
		display: flex !important;
	}
	.contents--campaign .cp__slider .slick-slide,
	.contents--campaign .cp__slider2 .slick-slide {
		margin: 0 50px;
	}
	.contents--campaign .cp__slider .slick-slide,
	.contents--campaign .cp__slider2 .slick-slide {
		min-width: 692px;
	}
	.campaign .ttl_set {
		flex-direction: column;
		align-items: center;
	}
	.campaign .ttl_wrap {
		align-items: center;
		text-align: center;
		gap: 0;
		margin: 0;
	}
	.campaign .section--ttl {
		max-width: 335px;
	}
	.campaign .section--ttl__kana {
		margin-top: 15px;
	}
	.chara {
		max-width: 230px;
		padding-right: 0;
	}
	.cp_contents_warp {
		margin-top: 10px;
	}
	.cp_contents_warp > div:last-of-type {
		border: none;
	}
	.entry_block {
		flex-direction: column;
		padding: 15px 0;
	}
	.date_block {
		padding: 15px 0;
	}
	.date_txt {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		text-align: left;
	}
	.arrows {
		display: none;
	}
	.entry_block_right .link__inner {
		margin-top: 20px;
		min-height: 78px;
	}
	.entry_block_right .link__inner::after {
		right: 25px;
		width: 9px;
		height: 9px;
		border-right: 2px solid;
		border-bottom: 2px solid;
		border-color: var(--cts-color);
	}
	/* lineup
	____________________*/
	.contents__inner.lineup {
		padding-block-start: 55px;
		padding-block-end: 0;
	}
	.lineup .lineup--list_wrap {
		margin: 95px auto 55px;
		gap: 10px;
	}
	.lineup .lineup--list_wrap + .lineup--list_wrap {
		margin: 55px auto;
	}
	.lineup .lineup--list {
		gap: 90px 60px;
	}
	.section--subttl__block {
		width: 18px;
	}
	.lineup .lineup--list .get_product_data {
		width: 100%;
	}
	.model_catch .icon_member {
		width: 128px;
		height: 128px;
		top: -5%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	.lineup .lineup--list .get_product_data .model__detail {
		flex-direction: column;
		padding: 20px 25px 35px;
	}
	.lineup .lineup--list .get_product_data .model_image {
		width: 145px;
		height: 163px;
	}
	/* .lineup .lineup--list .get_product_data .model_image figure {
		max-width: 66%;
	} */
	/* .lineup .lineup--list.laptop .get_product_data .model_image figure {
		max-width: 80%;
	} */
	.model_catch {
		justify-content: center;
		padding: 60px 10px 18px 10px;
	}
	.model_catch p {
		text-align: center;
	}
	.model__txt {
		order: 2;
	}
	.model__name {
		text-align: center;
	}
	.model__spec-list {
		text-align: center;
	}
	.model__price_block {
		text-align: center;
	}
	.model_image {
		order: 1;
	}
	.lineup .bottom_txt_wrap p {
		letter-spacing: 10px;
	}
	/* benefit
	____________________*/
	.point__wrap + .point__wrap {
		margin: 70px 0 0;
	}
	.point__wrap.point4 .point__inner {
		padding-bottom: 0;
	}
	.point__wrap.point1 .point__inner::after,
	.point__wrap.point2 .point__inner::after,
	.point__wrap.point3 .point__inner::after,
	.point__wrap.point4 .point__inner::after {
		top: 45px;
	}
	.point__number {
		width: 56px;
	}
	.point__wrap.point2 .point__number,
	.point__wrap.point4 .point__number {
		margin: 0 auto;
	}
	.point__wrap .point__subttl {
		margin: 15px 0 5px;
	}
	.sample_wrap {
		flex-direction: column;
		margin: 20px 0 0;
		gap: 30px;
	}
	.sample_wrap.wallpaper > figure:nth-of-type(1) {
		margin: 0;
	}
	.sample_wrap .triangle {
		top: 47%;
		left: 50%;
		transform: rotate(-60deg) translate(-50%, -50%);
	}
	.comment_wrap {
		padding: 15px 0 35px;
	}
	/* cfooter
	____________________*/
	.cfooter_logo {
		width: 72px;
	}
	.cfooter .about {
		margin: 35px 0 50px;
	}
	.cfooter .about p {
		text-align: left;
		padding-inline: 10px;
	}
	.member__list {
		gap: 40px;
	}
}
@media (max-width: 479px) {
	.contents--mv .pc {
		display: none;
	}
	.contents--mv .sp {
		display: block;
	}
}

/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translateX(-100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}

/*==================================================
パタッ
===================================*/


/* 下へ */
.flipDown{
animation-name:flipDownAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes flipDownAnime{
  from {
    transform: perspective(2500px) rotateX(100deg);
 	opacity: 0;
  }

  to {
    transform: perspective(2500px) rotateX(0);
	opacity: 1;
  }
}


/* 左へ */
.flipLeft{
animation-name:flipLeftAnime;
animation-duration:1s;
animation-fill-mode:forwards;
perspective-origin:left center;
opacity:0;
}

@keyframes flipLeftAnime{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
 	opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}


/* 左上へ */
.flipLeftTop{
animation-name:flipLeftTopAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes flipLeftTopAnime{
  from {
   transform: translate(-20px,80px) rotate(-15deg);
 	opacity: 0;
  }

  to {
   transform: translate(0,0) rotate(0deg);
	opacity: 1;
  }
}

/* 右へ */
.flipRight{
animation-name:flipRightAnime;
animation-duration:1s;
animation-fill-mode:forwards;
perspective-origin:right center;
opacity:0;
}

@keyframes flipRightAnime{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
 	opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}

/* 右上へ */
.flipRightTop{
animation-name:flipRightTopAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes flipRightTopAnime{
  from {
   transform: translate(-20px,80px) rotate(25deg);
   opacity: 0;
  }

  to {
   transform: translate(0,1) rotate(0deg);
	opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.flipDownTrigger,
.flipLeftTrigger,
.flipLeftTopTrigger,
.flipRightTrigger,
.flipRightTopTrigger{
    opacity: 0;
}

/*==================================================
くるっ
===================================*/


/* X 軸（縦へ） */
.rotateX{
	animation-name:rotateXAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes rotateXAnime{
	from{
		transform: rotateX(0);
		opacity: 0;
		}
	to{
		transform: rotateX(-360deg);
		opacity: 1;
		}
}

/*　Y軸（横へ） */
.rotateY{
	animation-name:rotateYAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes rotateYAnime{
	from{
		transform: rotateY(0);
		opacity: 0;
		}
	to{
		transform: rotateY(-360deg);
		opacity: 1;
		}
}

/* Z 軸（左へ） */
.rotateLeftZ{
	animation-name:rotateLeftZAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes rotateLeftZAnime{
	from{
		transform: rotateZ(0);
		opacity: 0;
		}
	to{
		transform: rotateZ(-360deg);
		opacity: 1;
		}
}

/*　Z 軸（右へ） */
.rotateRightZ{
	animation-name:rotateRightZAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes rotateRightZAnime{
	from{
		transform: rotateZ(0);
		opacity: 0;
		}
	to{
		transform: rotateZ(360deg);
		opacity: 1;
		}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.rotateXTrigger,
.rotateYTrigger,
.rotateLeftZTrigger,
.rotateRightZTrigger{
    opacity: 0;
}

/*==================================================
ボンッ、ヒュッ
===================================*/

/* 拡大 */
.zoomIn{
	animation-name:zoomInAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
	transform: scale(0.6);
	opacity: 0;
  }

  to {
    transform: scale(1);
	opacity: 1;
  }
}

/* 縮小 */
.zoomOut{
	animation-name:zoomOutAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
}

@keyframes zoomOutAnime{
  from {
	transform: scale(1.2);
	opacity: 0;
  }

  to {
    transform:scale(1);
	opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.zoomInTrigger,
.zoomOutTrigger{
    opacity: 0;
}

/*==================================================
じわっ
===================================*/

/* ぼかしから出現 */
.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.blurTrigger{
    opacity: 0;
}

/*==================================================
にゅーん
===================================*/

/* 滑らかに変形して出現 */
.smooth{
	animation-name:smoothAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
  　transform-origin: left;
	opacity:0;
}

@keyframes smoothAnime{
  from {
  transform: translate3d(0, 100%, 0) skewY(12deg);
  opacity:0;
  }

  to {
  transform: translate3d(0, 0, 0) skewY(0);
  opacity:1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.smoothTrigger{
    opacity: 0;
}

/*==================================================
スーッ（枠線が伸びて出現）
===================================*/

/*枠線が伸びて出現*/

.lineTrigger{
  position: relative; /* 枠線が書かれる基点*/
  opacity:0;
}

.lineTrigger.lineanime{
	animation-name:lineAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes lineAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*上下線*/
.lineTrigger::before,
.lineTrigger::after{
  position: absolute;
  content:"";
  width:0;
  height:1px;
  background:var(--cts-color);/* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after{
  position: absolute;
  content:"";
  width: 1px;
  height:0;
  background:var(--cts-color);/* 枠線の色*/
}

/*上線*/
.lineTrigger::before {
	top:0;
	left:0;
}

.lineTrigger.lineanime::before {
	animation: lineAnime .5s linear 0s forwards;/*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.line2::before{ 
	top:0;
	right:0;
}

.lineTrigger.lineanime .line2::before {
	animation: lineAnime2 .5s linear .5s forwards;/*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.lineTrigger::after { 
	bottom:0;
	right:0;
}

.lineTrigger.lineanime::after {
	animation: lineAnime .5s linear 1s forwards;/*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after{ 
	bottom:0;
	left:0;
}

.lineTrigger.lineanime .line2::after {
	animation: lineAnime2 .5s linear 1.5s forwards;/*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@keyframes lineAnime {
	0% {width:0%;}
    100%{width:100%;}
}

@keyframes lineAnime2 {
	0% {height:0%;}
    100%{height:100%;}
}

/*枠線内側の要素*/

.lineTrigger.lineanime .lineinappear{
	animation: lineInnerAnime .5s linear 1.5s forwards;/*1.5秒後に中央のエリアが0.5秒かけて表示*/
	opacity: 0;/*初期値を透過0にする*/	
}

@keyframes lineInnerAnime{
	0% {opacity:0;}
    100% {opacity:1;}
}


/*==================================================
シャッ（背景色が伸びて出現）
===================================*/

/*背景色が伸びて出現（共通）*/
.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*左から*/
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--cts-color);/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/*右から*/
.bgRLextend::before{
	animation-name:bgRLextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;/*伸びる背景色の設定*/
}
@keyframes bgRLextendAnime{
	0% {
		transform-origin:right;
		transform:scaleX(0);
	}
	50% {
		transform-origin:right;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:left;
	}
	100% {
		transform-origin:left;
		transform:scaleX(0);
	}
}

/*下から*/
.bgDUextend::before{
	animation-name:bgDUextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;/*伸びる背景色の設定*/
}
@keyframes bgDUextendAnime{
	0% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
	50% {
		transform-origin:bottom;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:top;
	}
	100% {
		transform-origin:top;
		transform:scaleY(0);
	}
}

/*上から*/
.bgUDextend::before{
	animation-name:bgUDextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;/*伸びる背景色の設定*/
}
@keyframes bgUDextendAnime{
	0% {
		transform-origin:top;
		transform:scaleY(0);
	}
	50% {
		transform-origin:top;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:bottom;
	}
	100% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger{
    opacity: 0;
}




/*==================================================
アニメーション設定
===================================*/

/* アニメーションの回数を決めるCSS*/

.count2{  
	animation-iteration-count: 2;/*この数字を必要回数分に変更*/
}

.countinfinite{  
	animation-iteration-count: infinite;/*無限ループ*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time05{  
	animation-delay: 0.5s;
}

.delay-time1{  
	animation-delay: 1s;
}

.delay-time15{  
	animation-delay: 1.5s;
}

.delay-time2{  
	animation-delay: 2s;
}

.delay-time25{  
	animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/

.change-time05{  
	animation-duration: 0.5s;
}

.change-time1{  
	animation-duration: 1s;
}

.change-time15{  
	animation-duration: 1.5s;
}

.change-time2{  
	animation-duration: 2s;
}

.change-time25{  
	animation-duration: 2.5s;
}
